Howdy….
I would like to get the record count on my listbox once it has been filled with json data when I query it a second time.
The initial bindComplete works fine the first time. The second time I perform the query to refill the listbox with new data the bind event does not fire.
I have set the asyn: true
$(“#jqxListBox”).on(‘bindingComplete’, function (event) {
var items = $(“#events”).jqxListBox(‘getItems’);
alert(items.length);
}
Or is there a simpler method to get the count once the listbox has been filled.
Thanks again,
Eric