Wijmo UI for the Web
dataFormatString Field
wijmo.grid Namespace > IColumn Interface : dataFormatString Field

A pattern used for formatting and parsing column values.

Syntax
var instance; // Type: wijmo.grid.IColumn;
var value; // Type: string
value = instance.dataFormatString;
var dataFormatString : string;
Example
$("#element").wijgrid({
    columns: [
        { dataType: "currency" }, 
        { dataType: "number" }, 
        { dataType: "number", dataFormatString: "p0" }
    ]
});
Remarks
The default value is undefined ("n" pattern will be used for "number" dataType, "d" for "datetime", "c" for "currency"). Please see the https://github.com/jquery/globalize for a full explanation and additional values.
See Also

Reference

IColumn Interface