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

Default value: null

A value that specifies the underlying data source provider of wijcombobox.

Syntax
$(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;
Example
var testArray = [
           {label: 'c++',value: 'c++'}, 
           {label: 'java',value: 'java'}, 
           {label: 'php',value: 'php'}
       ];
       $("#tags").wijcombobox({
           data: testArray
       });
Remarks
This option could either be a wijdatasource object or an Object Array containing an item such as {label: "label text", value: "value"}.
See Also

Reference

options type
wijcombobox jQuery Widget