Hello all,
I test the server-side processing and I'm stuck on an issue.
The first time I load the table my data appear and everything is OK but the pagination and
the sort system don't work.
In my JSON the variable sEcho is equal to 0.
So this is a problem in my server-side code.
After debbuging, It's due to impossibility of finding all variables in GET.
All my $_GET variables is equal to null (!isset($_GET['sEcho'])).
In my client-side code I have this:
Any solutions?
I test the server-side processing and I'm stuck on an issue.
The first time I load the table my data appear and everything is OK but the pagination and
the sort system don't work.
In my JSON the variable sEcho is equal to 0.
So this is a problem in my server-side code.
After debbuging, It's due to impossibility of finding all variables in GET.
All my $_GET variables is equal to null (!isset($_GET['sEcho'])).
In my client-side code I have this:
$(document).ready(function() { $('#dataTable').dataTable( { "bProcessing": true, "bServerSide": true, "sAjaxSource": "testtableau/afficheTableau2.php" }); });
Any solutions?