Scroller with huge dataset is not working in IE 10

Scroller with huge dataset is not working in IE 10

timontimon Posts: 1Questions: 0Answers: 0
edited September 2013 in Bug reports
With a huge dataset only the first 61464 rows will be shown.

To recreate this bug:
Open ./extras/scroller/large_js_source.html
Change the data loop to 250k.

Open the demo page.
Scroll to the bottom.
On IE 10 when not in compatibility mode only 61464 rows will be shown.

[code]
$(document).ready(function() {
var aaData = [];
for ( var i=0 ; i<250000 ; i++ ) {
aaData.push( [ i, i, i, i, i ] );
}

var oTable = $('#example').dataTable( {
"sScrollY": "200px",
"oScroller": {
"trace": true
},
"aaData": aaData,
"sDom": "frtiS",
"bDeferRender": true
} );
} );
[/code]

PS: IE 10 and 1.9.4 and scroller 1.1.0 (and nightly build (1.1.1) is also not working)
This discussion has been closed.