Hi,
I have a kendo grid. And i am using filters on all the columns. Suppose i filtered on some column and did not clear it. Now, when i reload the grid, i want to clear the filter.I dont want to preserve the filtered stated. If i don't clear it, then the new data is getting rendered only when i clear the filter(as it doesn't have any row matching the filter search criteria). I am reloading the grid this way :
var grid = $("#" + gridDivId).data("kendoGrid");
var new_data = gridData;
grid.dataSource.data(new_data);
grid.dataSource.page(1);
What should i add to achieve that?
Regards,
Khushali
I have a kendo grid. And i am using filters on all the columns. Suppose i filtered on some column and did not clear it. Now, when i reload the grid, i want to clear the filter.I dont want to preserve the filtered stated. If i don't clear it, then the new data is getting rendered only when i clear the filter(as it doesn't have any row matching the filter search criteria). I am reloading the grid this way :
var grid = $("#" + gridDivId).data("kendoGrid");
var new_data = gridData;
grid.dataSource.data(new_data);
grid.dataSource.page(1);
What should i add to achieve that?
Regards,
Khushali