IE8 Performance Issues x+1
IE8 Performance Issues x+1
Hi all,
we are currently developing an application with the PHP-Symfony Framework and jQuery. Besides those we chose to use DataTables to sort our data (thanks for the great work btw!).
Usually our users using Firefox, but recently we had a rollout of IE8 and more and more people start using it. We have huge performance issues with the IE8 when initializing the table. If we disable the DataTables, the performance is... well, it would be okay that way ;-)
I tried two things mentioned on this board:
#1 adding
[code]'bAutoWidth': false[/code]
to the table definition.
#2 changing the "innerHTML" in line
[code]aLocalData[jInner] = $.trim(nTds[j].innerHTML);[/code]
to "text()".
Both made no difference. We only have like ~100-200 rows in the table, which should load pretty fast. We are using the latest 1.7.4 version and our initialization looks like this (one example):
[code]jQuery('#myid').dataTable({
'sDom': 'rtp',
'bStateSave': true,
'bPaginate': false,
'aoColumnDefs': [{ 'bSortable': false, 'aTargets': [0, 1, 4, 8, 9] }]
});[/code]
Do you have any idea?
Thanks in advance,
tioz
we are currently developing an application with the PHP-Symfony Framework and jQuery. Besides those we chose to use DataTables to sort our data (thanks for the great work btw!).
Usually our users using Firefox, but recently we had a rollout of IE8 and more and more people start using it. We have huge performance issues with the IE8 when initializing the table. If we disable the DataTables, the performance is... well, it would be okay that way ;-)
I tried two things mentioned on this board:
#1 adding
[code]'bAutoWidth': false[/code]
to the table definition.
#2 changing the "innerHTML" in line
[code]aLocalData[jInner] = $.trim(nTds[j].innerHTML);[/code]
to "text()".
Both made no difference. We only have like ~100-200 rows in the table, which should load pretty fast. We are using the latest 1.7.4 version and our initialization looks like this (one example):
[code]jQuery('#myid').dataTable({
'sDom': 'rtp',
'bStateSave': true,
'bPaginate': false,
'aoColumnDefs': [{ 'bSortable': false, 'aTargets': [0, 1, 4, 8, 9] }]
});[/code]
Do you have any idea?
Thanks in advance,
tioz
This discussion has been closed.