DataTables dies in IE(8,9,10) with ~3500 rows ( 3 columns)
DataTables dies in IE(8,9,10) with ~3500 rows ( 3 columns)
Hey,
I am kinda new to datadables and, first of all, have to say that this project is awesome! :-)
Anyway i have big performance issues in the Internet Explorer when i try to display tables with ~3500 rows. it takes about 1 Minute to load the Table. In Firefox / Chrome it takes about 3-5 seconds.
I use datatables @version 1.9.4
I am loading the table with a php function and i get the data from a mssql database:
[code]
AP-Nummer
Edit
Delete
<?php $i=0; while( $i < count($table_zitd) ):?>
<?php echo $table_zitd[$i]['AP']; ?>
Edit
Delete
<?php $i++; endwhile; ?>
[/code]
[code]
$('#table_zitd').dataTable({
"aLengthMenu": [
[5, 15, 20, -1],
[5, 15, 20, "All"] // change per page values here
],
// set the initial value
"iDisplayLength": -1,
"sDom": "<'row-fluid'<'span6'l><'span6'f>r>t<'row-fluid'<'span6'i><'span6'p>>",
"sPaginationType": "bootstrap",
"oLanguage": {
"sLengthMenu": "_MENU_ records per page",
"oPaginate": {
"sPrevious": "Prev",
"sNext": "Next"
}
},
"aoColumnDefs": [{
'bSortable': false,
'aTargets': [1,2]
}
]
});
[/code]
Is there anything i can do to get this script running in the internet explorere?
I am kinda new to datadables and, first of all, have to say that this project is awesome! :-)
Anyway i have big performance issues in the Internet Explorer when i try to display tables with ~3500 rows. it takes about 1 Minute to load the Table. In Firefox / Chrome it takes about 3-5 seconds.
I use datatables @version 1.9.4
I am loading the table with a php function and i get the data from a mssql database:
[code]
AP-Nummer
Edit
Delete
<?php $i=0; while( $i < count($table_zitd) ):?>
<?php echo $table_zitd[$i]['AP']; ?>
Edit
Delete
<?php $i++; endwhile; ?>
[/code]
[code]
$('#table_zitd').dataTable({
"aLengthMenu": [
[5, 15, 20, -1],
[5, 15, 20, "All"] // change per page values here
],
// set the initial value
"iDisplayLength": -1,
"sDom": "<'row-fluid'<'span6'l><'span6'f>r>t<'row-fluid'<'span6'i><'span6'p>>",
"sPaginationType": "bootstrap",
"oLanguage": {
"sLengthMenu": "_MENU_ records per page",
"oPaginate": {
"sPrevious": "Prev",
"sNext": "Next"
}
},
"aoColumnDefs": [{
'bSortable': false,
'aTargets': [1,2]
}
]
});
[/code]
Is there anything i can do to get this script running in the internet explorere?
This discussion has been closed.