Hi
I've had my set up working for ages but now it only wants to show the first 10 rows and I can't see what's changed to make it do this. The data is pulled from a database via ajax and I can see all the rows in the data source
My initialisation is:
oTable = $('.datatable').dataTable({
"bServerSide": false,
"bDeferRender": false,
"bProcessing": false,
"sAjaxSource": "/siteuser/datatable",
"sDom": "<'row'<'col-xs-6'l><'col-xs-6'f>r>t<'row'<'col-xs-6'i><'col-xs-6'p>>",
"sPaginationType": "bs_full",
"oLanguage": {
"sLengthMenu": "_MENU_ records per page"
},
"iDisplayLength": 10,
"aaSorting": [
[1, "asc" ]
],
"aoColumns": [
{'bSortable': true, 'sClass': 'text-center'}, //id
{'bSortable': true}, //date
{'bSortable': true}, //category
{'bSortable': true, 'sClass': 'text-center'}, //valid+member
{'bSortable': true, 'sClass': 'text-center'}, //valid+member
{'bSortable': true, 'sClass': 'text-center'}, //valid+member
{'bSortable': true, 'sClass': 'text-center'}, //disabled
{'bSortable': false, 'sClass': 'text-center'} //actions
]
});
The status only states showing 10 rows from 10
I've run the page through the debug tool and here's a link: http://debug.datatables.net/upaqej
I can't see any errors in the console so not sure what's creating this problem