I am using jqxListBox, for a simple test, I am just filling it with 3 items. However when it is displayed ONLY the last item in the list is displayed.
Here is code:
var source = [ "Affogato", "Americano", "Bicerin", "Breve", ]; $("#WebSourceList").jqxListBox({ source: source, width: '200', height: '300', theme: GetTheme() });
Here is what it looks like: (Notice only the last item is shown, no matter how many items are in source)
Is there any limitation with ListBox such as must be initially visible or cannot work within an iFrame? I know this doesnt make much sense but as you can see the code above is very simple and taking from example.
thanks,
Mike