I have a paged GridPanel and don't know how to go about adding server side sorting. Do I add a listener for the sortChange() event? Do I override it?? Or is there another event that I should work with.
Any help would be appreciated.
|
I have a paged GridPanel and don't know how to go about adding server side sorting. Do I add a listener for the sortChange() event? Do I override it?? Or is there another event that I should work with. Any help would be appreciated.
| |||
|
feedback
|
|
No. In the definition for your store just set
And on the server side you will now be getting a sort and dir request parameters specifying the sort field and direction. When the columns are clicked the store will update sorted by the column and direction you pick. | |||
|
feedback
|