Wijmo UI for the Web
data Field
wijmo.grid Namespace > IWijgridOptions Interface : data Field

Determines the datasource. Possible datasources include: 1. A DOM table. This is the default datasource, used if the data option is null. Table must have no cells with rowSpan and colSpan attributes. 2. A two-dimensional array, such as [[0, "a"], [1, "b"]]. 3. An array of objects, such as [{field0: 0, field1: "a"}, {field0: 1, field1: "b'}]. 4. A wijdatasource. 5. A wijdataview.

Syntax
var instance; // Type: wijmo.grid.IWijgridOptions;
var value; // Type: any
value = instance.data;
var data : any;
Example
// DOM table
$("#element").wijgrid();
// two-dimensional array
$("#element").wijgrid({ data: [[0, "a"], [1, "b"]] });
See Also

Reference

IWijgridOptions Interface