I have a encountered a weird problem with JQuery datatables; I have these on a number of pages on my site, and they are working perfectly, except when the data exceeds some seemingly arbitrary size. In one instance this is exactly 798 rows (with two columns), another, which has nine columns, won’t display anything over around 500 rows. I am figuring this is something to do with the overall size of the data. Looking this up on Google people are saying there can be a problem with very large datasets, but these always seem to refer to rows in the millions; the most I have is just over 16000. Surely this shouldn’t cause an issue?
Basically if I try to return more rows than it likes, it does nothing; no errors, just doesn’t display any data and locks up IE. Is there a setting somewhere I have missed that is causing this?
Thanks
I ended up using Server Side processing to handle the data loading:
This worked perfectly and loaded quickly since I am only loading 10 or so at a time.