Inserting Large numbers of records in datatable at a time.
Inserting Large numbers of records in datatable at a time.
bharat
Posts: 2Questions: 0Answers: 0
I am using DataTable to dynamically load data using AJAX from php service(in JSON format), parse them and Add them to datatable as a whole using fnAddData() function.
Source is like:
[code]
for(var i=0;i
Source is like:
[code]
for(var i=0;i
This discussion has been closed.
Replies
Allan
I tested in Mozilla Firefox, Chrome, and Internet Explorer.
And I have enabled deferred rendering and infinite scrolling using:
[code]
fTable = $('#fileTable').dataTable({
.... ,
"bScrollInfinite": true ,
"bDeferRender": true,
....
});
[/code]
I can's use direct AJAX datasource to datatable because dataobjects that are returned by webservice are first processed as per some requirements and then array is builded and that is inflated in datatable.
Bharat
Allan