How to stop serverside sorting

How to stop serverside sorting

dyapasrikanthdyapasrikanth Posts: 20Questions: 0Answers: 0
edited April 2011 in General
I want serverside searching not sorting but sorting should be done at client side.
Is it possible

Replies

  • allanallan Posts: 63,516Questions: 1Answers: 10,473 Site admin
    No this is not possible with server-side processing. The reason it is not, is that sorting requires the full data set, and width server-side processing the full data set is on the server, and not known to the client. If you want client-side sorting you'd need to use client-side processing.

    Allan
This discussion has been closed.