Thank you for the response.
But my problem is setting the selected item as soon as the data is loaded in BindingComplete.
$(“#jqxDropDownList”).on(‘bindingComplete’, function (event) {
alert($(“#jqxDropDownList”).jqxDropDownList(‘getItems’).length);
});
In this example getItems is [] so selectItem returns undefined.
And selectItem causes “Uncaught TypeError: Cannot read property ‘selectIndex’ of null”
We are loading data from AJAX/dataAdapter. I want to set the list to an item by a specific value immediately after loading completes.