When using a custom Ti.UI.Textfield for a search view the noresults event is not fired.
The issue is that it is just checking for filterQuery which is not set when you use listView.searchText = "". This PR will set that value which makes the noeresults event fire again.
When using a custom Ti.UI.Textfield for a search view the
noresults
event is not fired. The issue is that it is just checking forfilterQuery
which is not set when you uselistView.searchText = ""
. This PR will set that value which makes thenoeresults
event fire again.