Uncaught TypeError: Cannot read property 'nTr' of undefined

Uncaught TypeError: Cannot read property 'nTr' of undefined

m2kolevm2kolev Posts: 2Questions: 0Answers: 0
edited November 2012 in Bug reports
Hi, Allen, thank you for this great product. I use it often and never had an issue up to now. The issue I am having is that using scroller under chrome it works for the first few "screens" of data and then I start getting the error message "Uncaught TypeError: Cannot read property 'nTr' of undefined" and no rows show (I can still scroll up and down). It seems that it renders the first "batch" of rows and then has issues with any further rendering. Under FireFox this is not an issue.

My setup:

[code]
var table = $("#quote").dataTable({
"bAutoWidth": false,
"sAjaxSource": "http://127.0.0.1/json/datatable/quote",
"sScrollY": "300px",
"sDom": "tS",
"oScroller": {
"displayBuffer": 10
},
"aaSorting": [[2,"desc"]],
"aoColumns": [{"sWidth":"5%"},{"sWidth":"10%"},{"sWidth":"10%"},{"sWidth":"25%"},{"sWidth":"10%","sClass":"align_right"},{"sWidth":"15%"},{"sWidth":"10%"},{"sWidth":"10%"},{"sWidth":"5%","bSortable":false}],
"fnInitComplete": function() {
table.columnFilter({
sPlaceHolder: 'head:before',
aoColumns: [{"type":"text"},{"type":"text"},{"type":"date-range"},{"type":"text"},{"type":"text"},{"type":"text"},{"type":"text"},{"type":"select"},null]
});
}
});
[/code]

Thanks

Replies

  • m2kolevm2kolev Posts: 2Questions: 0Answers: 0
    Forgot to add that the error occurs on line 516:

    j.nTr===null&&ua(a,a.aiDisplay[g]);
  • allanallan Posts: 63,381Questions: 1Answers: 10,449 Site admin
    Please link use to a page showing the issue or use http://live.datatables.net to create a test case.

    Allan
This discussion has been closed.