I am populating a select list from a database and need to know how many items have been retrieved and entered into the list.
I am populating a select list from a database and need to know how many items have been retrieved and entered into the list.
Steve,
In the success event of the data service that populates your list put Java code like this:
var nitems = data.length;
You can then take that variable and store it to a local storage items... Or move it to a hidden control on your user interface.
Best,
Bruce