Hi,
I have a refresh of my dhtmlxgrid.
When I have several pages, the refresh initialise the dhtmlxgrid in the first page.
I know that normal because I clear my data grid and after I reload it.
I want to know if it’s possible to save my page number before th refresh.
And set the page after the refresh.
thanks
sandaly
can be done as
var current = grid.currentPage;
grid.clearAll()
grid.loadXML(some,function(){
grid.changePage(current);
});