Use of server-side processing
Use of server-side processing
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
http://datatables.net/examples/data_sources/server_side.html
I've ever see this page, I apply it but it don't works :/
Has anyone ever used this feature successfully?
More i wish i could get a return of the ajax call, in case of success and failure.
It is possible?