'ntablewrapper' is null or not an object

'ntablewrapper' is null or not an object

AmityAmity Posts: 1Questions: 0Answers: 0
edited September 2013 in General
Hi all,
I am newbie to jquery data table and here below is my code.

[code]var oTable = $('#table').dataTable();
oTable.fnDestroy();
oTable = $('#table').dataTable( {
"bProcessing": true,
"bServerSide": true,
.
"fnDrawCallback": function( oSettings ) {
.
},
"fnServerData": function ( sSource, aoData, fnCallback, oSettings ) {
oSettings.jqXHR = $.ajax( {
"dataType": 'json',
"type": "POST",
"url": sSource,
"data": aoData,
"success": function(data){
}
}
});[/code]

Its throwing an error 'ntablewrapper' is null or not an object in ie8
Any help in right direction would be appriciated.

Thanx in advance
amit

Replies

  • allanallan Posts: 63,498Questions: 1Answers: 10,471 Site admin
    Link to a test case, as noted in the forum rules, please.

    Allan
This discussion has been closed.