I want to switch page and select a row on grid when page loaded. And in $(document).ready(funtion()) I write this:
$("#myGrid").data("kendoGrid").dataSource.page(17);
And it's working: the grid page is switched to 17. But right after that I write:
$("#myGrid").data("kendoGrid").select($("#myGrid").data("kendoGrid").tbody.find('>tr').find('>td').filter(function () {return $(this).text() == "@Model.ActionId";}).parent('tr:first'));
And it's not working. But when I run this command from browser's console, the row is selected. What should I do?
serverPaging? If so, you should keep in mind that switching pages means loading new data from the server and takes some time. SayingdataSource.page(17)means start loading page 17 but unless the second instruction is invoked upon the completion of the first, it will not succeed. – OnaBai Dec 7 '12 at 7:44