Datatable serverside processing with xml data
Datatable serverside processing with xml data
Ramprakash3
Posts: 5Questions: 1Answers: 0
how to do pagination on serverside with jquery and xml data (with out php)
This discussion has been closed.
Replies
Your server side code will need to support these parameters for Datatables server side processing:
https://datatables.net/manual/server-side
Datatables doesn't support XML format but expects JSON formatted data. Either your server script can return JSON data or you can use the
ajax.dataSrc
to convert the XML data to a supported JSON format.The data formats supported are described here:
https://datatables.net/manual/data/
Kevin