Slow data loading/sorting in IE 10
Slow data loading/sorting in IE 10
I'm fetching about 31k rows (3 columns per row) from my server. That's 5480kb of data.
Opera 12 loads this data array for about 4 seconds.
However, IE 10 loads it for 35-40 seconds . Can i speed up it somehow, or is it just another "feature" of IE?
Opera 12 loads this data array for about 4 seconds.
However, IE 10 loads it for 35-40 seconds . Can i speed up it somehow, or is it just another "feature" of IE?
This discussion has been closed.
Replies
Allan
I've tried to limit result set to 4k and still it takes about 4secs for IE to sort table by one column. Can i setup a test table on your site with such number of rows?
Allan
http://datatables.net/forums/discussion/16111/contribution-performance-improvements
Thanks
With this change this column shows tag's contents but not the image itself.
Maybe i should use some special init paramters? Currently i'm using these:
$(document).ready(function() {
$('#example').dataTable( {
"bProcessing": true,
"sPaginationType": "full_numbers",
"sAjaxSource": "query.php",
"bStateSave": true,
"bDeferRender": true,
"aaSorting": [[3,"desc"],[2,"asc"]]
} );
} );