Start Building Professional
Web Apps Today


 
Categories Question details Back To List
Question  posted by andreea on Oct 21, 2008 03:38
open dhtmlx forum
Go to first page of grid

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 .
Answer posted by Support on Oct 21, 2008 07:53
>>, 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;
});