wijmo.combobox.wijcombobox Namespace > options type : columns Option |
Default value: []
An array that specifies the column collections of wijcombobox.
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) | |
---|---|
|
$("#tags").wijcombobox("option", "columns", [ {name: 'header1', width: 150}, {name: 'header2', width: 150}, {name: 'header3', width: 150} ]);