There is a moment in my app, that I need to force to show all items in the suggestion list, no matter what the user has typed. How can I do that?
I tried to do somet
It's actually even easier than Sam listed. Whenever you want to show all, just do:
performFiltering("", 0);
When the filtering finishes it'll automatically display the drop down with all of the items visible.