wijmo.grid.c1field Namespace > options type : dataFormatString Option |
A pattern used for formatting and parsing column values.
Javascript (Usage) | |
---|---|
$(function () { // Get value var returnsValue; // Type: string returnsValue = $(".selector").c1field("option", "dataFormatString"); // Set value var newValue; // Type: string $(".selector").c1field("option", "dataFormatString", newValue); }); |
Javascript (Specification) | |
---|---|
|
$("#element").wijgrid({ columns: [ { dataType: "currency" }, { dataType: "number" }, { dataType: "number", dataFormatString: "p0" } ] });