Default Sort / IE7 Slowness
Default Sort / IE7 Slowness
[code]
var oSettings = {'aoColumns' : [{'bSortable':false},null,null,null,null],
'bPaginate' : false,
'bProcessing' : true,
'bSortClasses' : false,
'sScrollY' : '400px',
'bScrollCollapse' : true,
'bInfo' : false
};
$('#sometable').dataTable(oSettings);
[/code]
Besides accepting the fact that IE7-JS is slow, I'm trying to see where the hang is. After profiling, I've noticed that it is spending a lot of time calling 'numeric-asc'. So why would this occur if there is no sorting going on?
var oSettings = {'aoColumns' : [{'bSortable':false},null,null,null,null],
'bPaginate' : false,
'bProcessing' : true,
'bSortClasses' : false,
'sScrollY' : '400px',
'bScrollCollapse' : true,
'bInfo' : false
};
$('#sometable').dataTable(oSettings);
[/code]
Besides accepting the fact that IE7-JS is slow, I'm trying to see where the hang is. After profiling, I've noticed that it is spending a lot of time calling 'numeric-asc'. So why would this occur if there is no sorting going on?
This discussion has been closed.
Replies
Allan
I don't want to rely on that method, since it is less accessible if JS is turned off, so if I can go back to a previous commit and test, perhaps turning off the default sort would be good enough.