wijmo.grid.c1field Namespace > options type : inputType Option |
Determines the type of html editor for filter and cells. Possible values are: "number", "date", "datetime", "datetime-local", "month", "time", "text".
Javascript (Usage) | |
---|---|
$(function () { // Get value var returnsValue; // Type: string returnsValue = $(".selector").c1field("option", "inputType"); // Set value var newValue; // Type: string $(".selector").c1field("option", "inputType", newValue); }); |
Javascript (Specification) | |
---|---|
|
$("#element").wijgrid({ columns: [{ inputType: "text" }]});