Is there a way to enable filtering in the list if it does not use a dataSource and just binds directly to the HTML ?
<ul id="listView">
<li>Item 1</li>
<li>Item 1</li>
<li>Item 1</li>
</ul>
<script>
$("#listView").kendoMobileListView({
filterable: true
});
</script>
I do get a textbox to filter, but no matter what I type, nothing comes up!