DataTables warning (table id example): Request unknown parameter error

DataTables warning (table id example): Request unknown parameter error

monkeyjaxcodermonkeyjaxcoder Posts: 5Questions: 0Answers: 0
edited October 2013 in General
I am using datatables and some users are getting an error:
DataTables warning (table id example): Request unknown parameter '45' and the data source row 44

Is there anything I can do in my code to stop this error or turn it off?

I tried to recreate this error and I can get it to error if I load a page and force the page to stop.


$(document).ready( function() {
$('#example').dataTable( {
"sDom": '<"top">frt<"bottom"p><"clear">',
"aaSorting": [ ],
"bStateSave": true,
"sScrollY": "450px",
"bPaginate": false,
"bDeferRender": true,
"bAutoWidth": false
} );
} );

Thanks,

Chris

Replies

  • allanallan Posts: 63,498Questions: 1Answers: 10,471 Site admin
    http://datatables.net/faqs#unknown_parameter - please link to a test case showing the error. Likely there is an incorrect number of cells in that row.

    Allan
This discussion has been closed.