'Ello StackOverflowers.
So this is my scenario:
I populate a ListView using localStorage. Everything working populating that listview and "refreshing" it. BUT!
Now I want to add a search bar if more than 5 elements are added to the ListView. This is my current code (which is not working):
if (resultLength > 5)
{
// alert('5 or more elemnts found.');
$("#ConnectionList").attr("data-filter", true);
$("#ConnectionList").attr("data-filter-placeholder", "Search...");
}
When I uncomment the alert, it fires correctly. Adding .listview('refresh') behind the two lines does not seem to work either.
What am I doing wrong?
Thank you in advance.
