Load page in grid

Is there a way to load a specific page within the grid. Say I have a grid using paging with 4 pages. I am on page 3. I want to reload just page 3… Is this possible?

Right now I am using clearAndLoad, but it clears out the grid and brings me back to page 1.

Thanks,
Matt

There is no way to reload only 3rd page. But you can use grid API to change page after grid is reloaded:

grid.clearAndLoad(url,function(){ grid.changePage(3); });

docs.dhtmlx.com/doku.php?id=dhtm … changepage