vue3 serverside
vue3 serverside
jemz
Posts: 131Questions: 40Answers: 1
HI can I ask, is it possible to use serverside in vue3 datatables ?, I didn't see an example of how to use it, can you please send me a link on how to use serveride.
I add serverside:true but it did not work
const options = {
lengthMenu: [ [2, 25, 50, -1], [2, 25, 50, "All"] ],
serverSide:true
};
Thank you in advance.
This question has an accepted answers - jump to answer
Answers
The key to making server side processing work is to have a server script that supports the SSP protocol. The server script is expected to handle the paging, sorting and searching of the table and return on the rows on the page. What are you using for your server script?
Kevin
Thanks I'm lacking server script code SSP
What language are you using at the server-side? Our Editor libraries for PHP, .NET and Node.js support server-side processing and could be used as per this post.
Allan