Wijmo UI for the Web
columns Option
wijmo.combobox.wijcombobox Namespace > options type : columns Option

Default value: []

An array that specifies the column collections of wijcombobox.

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

Reference

options type
wijcombobox jQuery Widget