Requirement of server side pagination and client side filter

Requirement of server side pagination and client side filter

ghatageravindraghatageravindra Posts: 2Questions: 1Answers: 0

Hi All,
I have requirement in the project which requires the pagination server side and option of filer, sort client side.
This is because getting the data from server side is expensive. Once data is retrieved I want to apply the sort, filter on the retrieved data only.
Please suggest, can we combine server side with client side datatable features?

Thanks in advance!
Ravindra

Answers

  • kthorngrenkthorngren Posts: 21,673Questions: 26Answers: 5,018

    It is not possible to perform client side sorting and filtering when using server side processing. By definition of server side processing, Datatables expects the server to process these functions. If it were possible it would only perform the sort and search on the data in the client (the page shown).

    Kevin

This discussion has been closed.