Wijmo UI for the Web
data Field
wijmo.combobox Namespace > WijComboboxOptions Interface : data Field

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

Syntax
var instance; // Type: wijmo.combobox.WijComboboxOptions;
var value; // Type: any
value = instance.data;
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

WijComboboxOptions Interface