wijmo.grid.c1field Namespace > options type : dataType Option |
Column data type. Used to determine the rules for sorting, grouping, aggregate calculation, and so on. Possible values are: "string", "number", "datetime", "currency" and "boolean".
Javascript (Usage) | |
---|---|
$(function () { // Get value var returnsValue; // Type: string returnsValue = $(".selector").c1field("option", "dataType"); // Set value var newValue; // Type: string $(".selector").c1field("option", "dataType", newValue); }); |
Javascript (Specification) | |
---|---|
|
$("#element").wijgrid({ columns: [{ dataType: "string" }]});