When I try to do the following, the UI Filters are not reset, but the appropriate data is displayed.
var grid = $("#grid").data("kendoGrid");
grid.dataSource.filter({});
I have tried this also:
grid.dataSource.filter();
Although not ideal, this works and the UI filters are reset:
$(".k-i-filter-clear").click();