wijmo.grid.c1band Namespace > options type : columns Option |
Default value: []
Gets a array of objects representing the band columns.
Javascript (Usage) | |
---|---|
$(function () { // Get value var returnsValue; // Type: [] returnsValue = $(".selector").c1band("option", "columns"); // Set value var newValue; // Type: [] $(".selector").c1band("option", "columns", newValue); }); |
Javascript (Specification) | |
---|---|
|
$("#element").wijgrid({ columns: [{ headerText: "Band", columns: [ { headerText: "ID" }, { headerText: "Name" } ] }] });