How to set a server-side pre-processing

How to set a server-side pre-processing

icare141icare141 Posts: 1Questions: 1Answers: 0

Hello,

I have a very large set of data (more than 25,000,000), and would like to use the datatable to get all its functionnalities.
There is an option, that activate a server-side processing: when you change the dataset's filter, a new request is ent to the server.

But in my case, I need to prefilter the dataset, so that all the filter or ordering processing are made locally on the sub-dataset.

Is there a module that could be used for that purpose?

Thank you for your help!

Answers

  • allanallan Posts: 61,726Questions: 1Answers: 10,109 Site admin

    No sorry. If you search the forum you'll find a couple of other requests like this. Server-side processing means that every draw will result in a request to the server by DataTables. That fundamentally is the point of server-side processing.

    It sounds like you might want to use client-side processing and just clear the table's data and then load in new data whenever you need to update the data.

    Allan

This discussion has been closed.