I have a large amount of data I wish to use with Jquery DataTable Plugin (6000 rows)
I'm currently using php to return a DOM Table and styling that using
$("#datatable-container").children("table:first").dataTable({
"bJQueryUI": true,
"sScrollX": "100%"
});
My issue is when rendering the table my browser locks for a period of time. I understand the threading limitations of javascript... I'm wondering if there is a better way to load the data / render the table that will not lock the browser?
Note simple 'paging' the data will not work unless someone can inform me as to how I would go about that and not loose datatables' paging or searching features.