Server Side Processing Only For Pagination

Server Side Processing Only For Pagination

MayurPMayurP Posts: 23Questions: 4Answers: 0
edited April 2014 in General
Hi All,

I've used below property for doing server side processing,

"bServerSide" : true

Now, When I do filter,search and sort It's making ajax call(server side) for fetching records.

Is it possible to do server side processing only for Pagination? [sorting and searching should work at client side]

Please provide your inputs.

Thanks.

Replies

  • allanallan Posts: 63,498Questions: 1Answers: 10,470 Site admin
    > Is it possible to do server side processing only for Pagination?

    No - server-side processing means that filtering, paging and sorting are all done at the server where the full data set it. Otherwise they would only operate on a limited data set and DataTables doesn't offer that option. See: http://next.datatables.net/manual/data#Processing-modes

    Allan
  • MayurPMayurP Posts: 23Questions: 4Answers: 0
    Thanks Allan
This discussion has been closed.