How to select kendo grid row if that row is not present on first page of the kendo grid./
问题 Tried to select a kendo grid row in dataBound (Note: that row is not on first page of the grid) but it didn't selected 3rd page row. dataBound: function(e) { if (id!== "" && id!== undefined && id!== null) { var grid = e.sender; grid.select("tr:contains('" + id + "')"); } }, Here id is in the page URL and getting ids value like below: and that will get passed in dataBound id var. id = $location.search().id; Any ideas how i can select the 3rd page row? Above logic works for the rows that are