Hi,
I am filtering the data-source of a listview as follows...
function filter(){
var listView = $("#SubFolderList").data("kendoMobileListView");
listView.dataSource.filter({ field: "ItemName", operator: "contains", value: SearchValue });
if(// the count after filter ==0){
//i want to hide a div
}
else{
//show the div
}
}
How to get the count of the filtered row?
Thanks,
Amrutha
I am filtering the data-source of a listview as follows...
function filter(){
var listView = $("#SubFolderList").data("kendoMobileListView");
listView.dataSource.filter({ field: "ItemName", operator: "contains", value: SearchValue });
if(// the count after filter ==0){
//i want to hide a div
}
else{
//show the div
}
}
How to get the count of the filtered row?
Thanks,
Amrutha