I am getting the error below and I don't no how to fix it could somebody help

I am getting the error below and I don't no how to fix it could somebody help

rdkurthrdkurth Posts: 3Questions: 1Answers: 0

debug code: evejun
DataTables warning (table id = 'expencetable'): Cannot reinitialise DataTable.
To retrieve the DataTables object for this table, pass no arguments or see the docs for bRetrieve and bDestroy

This just started today 5/16/14 It has been running just fine for about 2 months witch is when I installed the script. Does it have anything to do with the upgrade

How My part of the code is this

$(document).ready( function() {
$('#expencetable').dataTable( {
"iDisplayLength": 6

} );
} )

$(document).ready( function() {
$('#signingstable').dataTable( {
"iDisplayLength": 6
} );
} )

$(document).ready( function() {
$('#paidsigningstable').dataTable( {
"iDisplayLength": 6
} );
} )
$(document).ready( function() {
$('#customertable').dataTable( {
"iDisplayLength": 6
} );
} )
$(document).ready( function() {
$('#admintable').dataTable( {
"iDisplayLength": 6
} );
} )

Answers

  • allanallan Posts: 61,665Questions: 1Answers: 10,096 Site admin
    edited May 2014

    Very happy to help. For us to do so, please follow the forum rules which very clearly state that a test case should be provided.

    Allan

This discussion has been closed.