Limit to the Size of Table?

Limit to the Size of Table?

abarbaneldabarbaneld Posts: 1Questions: 0Answers: 0
edited December 2011 in DataTables 1.8
Is there a limit to the size of a table. I am attempted to create and 11 col wide by 409 row long table. I am initializing dataTables by the following:
[code]
$(document).ready(function() {
$('#example').dataTable( {
"bProcessing": true,
"bServerSide": true,
"sAjaxSource": "arrays.txt" } );
} );
[/code]

Chrome is reporting and undefined error:
[quote]jquery.dataTables.js:3591 Uncaught TypeError: Cannot read property 'length' of undefined[/quote]

I attempted using the sample data file found in the examples and it works fine, I also validated my JSON at http://jsonlint.com/

Any help correcting or providing if there is a limit would be appreciated.
This discussion has been closed.