Use of server-side processing

Use of server-side processing

EmyleenEmyleen Posts: 21Questions: 8Answers: 0

Hello everybody,

I'm using this plugin everywhere in my website. But for a page, I need to use the server-side processing because I have a lot of data.
I've seen examples but when I'm using them it don't works. I don't understand how to use this part of the plugin, is there any tutorial to explain that?

In my case I'm using this code :

var oTable = $('#data_table_srv').dataTable({
"processing": true,
"serverSide": true,
"ajax": {
"url": "../rpc.php",
"type": "POST",
"data": "p=adherents&a=find_users_inactive&plg=adherents&admin=1",
"dataType": "json",
"success": function(userlist)
{
console.log("success");
}
}
});

Thank you for your answers

Answers

This discussion has been closed.