tags:

views:

16

answers:

1

I have paginated data grid having more than 5 pages (100 records/page) now i want to sort them all on just clicking on fields header

+1  A: 

The easiest way I have found to do this is to implement this on the server side and have your web service call take parameters for range (or page number and page size) and sort order. Then override the default behavior of the data grid headers to make service calls rather than sort the local data.

Wade Mueller
Correct. There's no point in sorting the local data because it's paged data.
adamcodes
Hi Wade can u please send the code for the same
Priya