I'm new in using JQuery DataTables. My problem is the following:
I have 157 entries in my Table. I set PageLength to 10 and paging to true. When loading the page, Datatables show me the first 10 entries but when i go to page 2, Datatables show me all entries in the Table except the rows from page 1.
On my other page I use the same code and everything works perfectly.
Datatables is loaded like this:
var table = $('#myArchiveTable').DataTable({
order: [[1, 'desc']],
paging: true,
pageLength: '10',
...
Please help me!
Thanks