I am seemingly having a problem with the following scenario:
I add an item (i.e. append) to a list, which already has 3 items.
I now have 4 items.
I then delete the last item from the list.
If I then test for an item in the 4th position, using getSelectedItem, I do not get a null return, as the documentation claims.
Instead if I use:
var item = jQuery(selector).jqxListBox(‘getSelectedItem’);
console.log (item.toSource());
The display shows ‘(function (){return h})’.
I expected a null return.
So if I use jQuery.isEmptyObject(item) to test for an empty item, it indicates ‘not empty’.
Am I missing something?
Any suggestions on the way forward will be appreciated!
Alastair