I have the following:
<div class="demo-section" >
@(Html.Kendo().ListView(Model)
.Name("listView")
.TagName("div")
.ClientTemplateId("template")
.Pageable()
.Selectable(selectable => selectable.Mode(ListViewSelectionMode.Single))
.Events(events => events.Change("onChange").DataBound("onDataBound"))
)
</div>
and I need a way to do the filtering on the client side just like the filtering in MobileListView. How can I do that?