vue3 serverside

vue3 serverside

jemzjemz Posts: 131Questions: 40Answers: 1
edited October 2022 in Free community support

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

  • kthorngrenkthorngren Posts: 21,343Questions: 26Answers: 4,954
    Answer ✓

    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

  • jemzjemz Posts: 131Questions: 40Answers: 1
    edited October 2022

    Thanks I'm lacking server script code SSP

  • allanallan Posts: 63,523Questions: 1Answers: 10,473 Site admin

    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

Sign In or Register to comment.