with JqueryUI autocomplete I have this css, that adds an image into input box, while loading data.
.ui-autocomplete-loading {
background: url(‘Images/loading.gif’) no-repeat right center;
}
How do I do that with jqxComboBox?
Also I have to set $(“#txtBox”).jqxComboBox({ disabled: true });
so that the search is not fired again, which some times it does, because of the the server delay.
I enable it on loadComplete, when setting the source of the comboBox
loadComplete: function () {
// get data records.
var records = dataAdapter.records;
$(“#txtBox”).jqxComboBox({ disabled: false });
$(“#txtBox”).jqxComboBox({ source: records });
}
Please advise at your earliest convenience.
Thanks.
Kate.