kendo UI Grid MVC initial page

asp.net-mvc, kendo-ui

Solution

I would suggest you to set the AutoBind property of the Grid to false and when the document ready event occurs use the page method of the dataSource (which is actually what the pager.page invokes).

$('#MyGrid').data().kendoGrid.dataSource.page(3);

The Data function which you used is intended for slightly different purposes :)

Problem

I am using Kendo UI Grid. Is there a way to start the grid at a different page than the first page? i want to set initial page number to '3' every time i open the grid.

Original source