Hello.
I'm using datatables 1.10.16 and django-datatables-view (https://bitbucket.org/pigletto/django-datatables-view) for server side.
My server return:
My datatables option:
var tablo = $('#myTable').dataTable({
destroy: true,
"ajax": {
"processing": true,
"serverSide": true,
"url": {% url 'deneme' %},
"contentType": 'application/json; charset=utf-8',
"processData": true,
"dataType": "json"
},
"paging": true,
"ordering": true,
"order": [[ 0, 'desc' ]],
"info": true,
"select": true,
"scrollY": "30vh",
"scrollCollapse": true,
"scrollX": true,
"pagingType": "input"
});
recordsTotal:22 at my json.
But I can see only one page. Second page not see.
I cannot other pages. What can I do?