$(function () { // Get value var returnsValue; // Type: any returnsValue = $(".selector").wijcombobox("option", "data"); // Set value var newValue; // Type: any $(".selector").wijcombobox("option", "data", newValue); });
var data : any;
Default value: null
A value that specifies the underlying data source provider of wijcombobox.
$(function () { // Get value var returnsValue; // Type: any returnsValue = $(".selector").wijcombobox("option", "data"); // Set value var newValue; // Type: any $(".selector").wijcombobox("option", "data", newValue); });
var data : any;
var testArray = [ {label: 'c++',value: 'c++'}, {label: 'java',value: 'java'}, {label: 'php',value: 'php'} ]; $("#tags").wijcombobox({ data: testArray });