wijmo.grid.wijgrid Namespace > options type : columns Option |
Default value: []
An array of column options.
Javascript (Usage) | |
---|---|
$(function () { // Get value var returnsValue; // Type: [] returnsValue = $(".selector").wijgrid("option", "columns"); // Set value var newValue; // Type: [] $(".selector").wijgrid("option", "columns", newValue); }); |
Javascript (Specification) | |
---|---|
|
$("#element").wijgrid({ columns: [ { headerText: "column0", allowSort: false }, { headerText: "column1", dataType: "number" } ] });