javascript - JQuery Datatable : 'nTableWrapper is null or not an object' error -
i newbie jquery data table , here below 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){ } } } );
it throwing following error in ie-8:
ntablewrapper null or not object
any in right direction appreciated.
thanks in advance!!!
Comments
Post a Comment