Datatables Server-side Processing with multiple queries

Datatables Server-side Processing with multiple queries

DanielSCDanielSC Posts: 19Questions: 7Answers: 1

Hi, I am trying to convert my client-side table to server-side processing. Trouble is I am generating the client-side table from multiple queries and the server-side processing only accepts one. Is there a way to use individual queries for each column in the table using server-side processing?

This question has an accepted answers - jump to answer

Answers

  • kthorngrenkthorngren Posts: 21,181Questions: 26Answers: 4,924
    Answer ✓

    Is there a way to use individual queries for each column in the table using server-side processing?

    No. You will need to combine the data into the columns in your server script and return all of the column data in one response as described in the SSP docs.

    Kevin

This discussion has been closed.