Hi,
Kendo UI Grid is reloading the data with previously selected page number. If I moved to 10th page of the Grid and then i am reloading the Grid with recent data. Grid data is still showing the 10th page instead of 1'st page. How can i reload the grid with focus on first page.
{
var grid = $("#grid").data("kendoGrid");
grid.dataSource.page(1);
}
If i placed the above code before reloading, it's taking time to reload the grid.
If i placed the above code after reloading, it's hitting the sever twice.
Please suggest on this.
Thanks,
Raj Yennam
Kendo UI Grid is reloading the data with previously selected page number. If I moved to 10th page of the Grid and then i am reloading the Grid with recent data. Grid data is still showing the 10th page instead of 1'st page. How can i reload the grid with focus on first page.
{
var grid = $("#grid").data("kendoGrid");
grid.dataSource.page(1);
}
If i placed the above code before reloading, it's taking time to reload the grid.
If i placed the above code after reloading, it's hitting the sever twice.
Please suggest on this.
Thanks,
Raj Yennam