Hi,
I go to the second page of the grid (recinfoArea)
How could I display first page of the grid,after I click on a column to sort the grid . When I display the first page of the grid , data must be sorted by the column I clicked on . Thank you .
, data must be sorted by the column I clicked on
When you sort grid - it sort data on all pages
>>How could I display first page of the grid,after I click on a column to sort the grid
Just add the next code
grid.attachEvent(“onAfterSorting”,function(){
this.changePage(1);
return true;
});