↧
How to check if a ListView contains some rows?
I have got a ListView that shows "No results" label if noresults event get fired. That's not a problem, everything works as expected. The problem is that if a user will change the text that is...
View Articlehow to handle noresult when searching a listview in Android
In ios, you simple type: listView.addEventListener('noresults', function(e){ alert("No results found!"); }); this doesn't seem to work on android. Any ideas how?
View Article