var instance; // Type: wijmo.combobox.WijComboboxOptions; var value; // Type: any value = instance.selectedIndex;
var selectedIndex : any;
A value that specifies the index of the item to select when using single mode.
var instance; // Type: wijmo.combobox.WijComboboxOptions; var value; // Type: any value = instance.selectedIndex;
var selectedIndex : any;
//To get the selected item using the selected index: var selectedIndex = $("# tags ").wijcombobox("option","selectedIndex"); var selectedItem = $("# tags ").wijcombobox("option","data")[selectedIndex]; // To set the selected item using the selected index: $("#tags").wijcombobox("option"," selectedIndex", 5);