Wijmo UI for the Web
columns Option

Default value: []

An array that specifies the column collections of wijcombobox.

Syntax
Javascript (Usage) 
$(function () {
    
    // Get value
    var returnsValue; // Type:  array
    returnsValue = $(".selector").wijcombobox("option", "columns");
    
    // Set value
    var newValue; // Type:  array
    $(".selector").wijcombobox("option", "columns", newValue);
        
});
Javascript (Specification) 
var columns : array;
Example
$("#tags").wijcombobox("option", "columns", [
                      {name: 'header1', width: 150}, 
                      {name: 'header2', width: 150}, 
                      {name: 'header3', width: 150}
              ]);
Browser Compatibility
7
5
5

See Also

Reference

options type
wijcombobox jQuery Widget

 

 


© 2013 All Rights Reserved.

Send comments on this topic.