The answer of Yaroslav did not help me. I tried to select the first entry in the kendo grid after the filter.
I solved this by attaching to a grid-related data event.
$("#grid").kendoGrid({ columns: [ { field: "name" }, { field: "age" } ], dataSource: [ { name: "Jane Doe", age: 30 }, { name: "John Doe", age: 33 } ], dataBound: function(e) {
In addition, you can use the view method to get the displayed results after filtering.
source share