Hi,
We used datatable for our website. it is working fine in Chrome and Firefox but not in IE 8 and IE 9 that work too slow. IE takes 5 times more time in compare of Chrome and Firefox. we debug it and found that while initiate Datatable object that takes time. so pls tell us is there any way that can help us. below i mentioned code
oTable = $("#tblSearchGrid").dataTable({
"bJQueryUI": true,
"iDisplayLength": TotalRecord,
'bFilter': false,
"bRetrieve": false,
"bDestroy": true,
"bLengthChange": false,
"bDeferRender": true,
"bSortClasses": false,
"aaSorting": [],
"aoColumnDefs": [{ "bSortable": false, "aTargets": [0] }, { "bSortable": false, "aTargets": [1]}],
"fnDrawCallback": function () {
CommonDrawCallBack();
},
"fnInitComplete": function () {
CommonInitComplete();
}
});
We used datatable for our website. it is working fine in Chrome and Firefox but not in IE 8 and IE 9 that work too slow. IE takes 5 times more time in compare of Chrome and Firefox. we debug it and found that while initiate Datatable object that takes time. so pls tell us is there any way that can help us. below i mentioned code
oTable = $("#tblSearchGrid").dataTable({
"bJQueryUI": true,
"iDisplayLength": TotalRecord,
'bFilter': false,
"bRetrieve": false,
"bDestroy": true,
"bLengthChange": false,
"bDeferRender": true,
"bSortClasses": false,
"aaSorting": [],
"aoColumnDefs": [{ "bSortable": false, "aTargets": [0] }, { "bSortable": false, "aTargets": [1]}],
"fnDrawCallback": function () {
CommonDrawCallBack();
},
"fnInitComplete": function () {
CommonInitComplete();
}
});