Wijmo UI for the Web
columns Option

Type: wijmo.grid.IColumn[]

Default value: []

Gets a array of objects representing the band columns.

Syntax
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) 
var columns : ;
Example
$("#element").wijgrid({
  columns: [{
     headerText: "Band",
     columns: [
        { headerText: "ID" },
        { headerText: "Name" }
     ]
  }]
});
Browser Compatibility
7
5
5

See Also

Reference

options type
c1band jQuery Widget

 

 


© 2013 All Rights Reserved.

Send comments on this topic.