How much datas can datatable handle

How much datas can datatable handle

vivekmyselfvivekmyself Posts: 16Questions: 0Answers: 0
edited March 2012 in General
Hi,

How much datas can datatable handle apart from the system configuration. I have a table of 50,000 rows of data. It didnt load. It crashed in the middle. Is there any limit for the rows?

Replies

  • allanallan Posts: 63,542Questions: 1Answers: 10,476 Site admin
    How are you loading the data, DOM, JS, Ajax or server-side processing? DOM is obviously the slowest since the data is required to be read from the DOM, while server-side processing will cope with many many millions of rows, but at the cost of an XHR for each table draw.

    Options to look at can be defer rendering and Scroller.

    Allan
This discussion has been closed.