Datatables 1.10 - Not Showing Results
This is my setup. Javascript/jQuery: $('#list').dataTable({ paging: false, serverSide: true, ajax: { url: '/search/', data: function (d) { r
Solution 1:
I found the problem. It was with the draw
in the JSON response. It was always 1.
If you use serverSide: true
, that means it is going to send draw
as a variable, and it must be returned.
More information here: http://datatables.net/manual/server-side
Post a Comment for "Datatables 1.10 - Not Showing Results"