Datatables stop at 4995 rows?

Datatables stop at 4995 rows?

xallxall Posts: 4Questions: 3Answers: 0

Hello
I want to use datatables for a huge amount of data. Now i have a problem
I make something like this:

$.getJSON(data).done(function (datas) {

$.each(datas, function (key, val) {

datatab.row.add([val.timestamp, testt, val.value, val.quality]);

}

}

Now when I look at my table there are only 4995 entries and then it stop?
Is there something like a limit?

Thank you!

This question has an accepted answers - jump to answer

Answers

  • jLinuxjLinux Posts: 981Questions: 73Answers: 75
    Answer ✓

    Why not use the ajax settingbif youre going to do it like that?..

    Link to the page with the DT instance, or reproduce the issue via a JSBin instance, pease. Cant troubleshoot it with the info you peovided

  • allanallan Posts: 62,296Questions: 1Answers: 10,214 Site admin

    There are no hard limits in DataTables itself. As jLinux notes, we'd need a test case showing the issue so it can be debugged since there is something else happening here.

    Allan

This discussion has been closed.