jQuery dataTables : Why is sAjaxSource not taking my path? -
the default path this:
"sajaxsource": "http://datatables.net/release-datatables/examples/server_side/scripts/jsonp.php", "fnserverdata": function( surl, aodata, fncallback ) { $.ajax( { "url": surl, "data": aodata, "success": fncallback, "datatype": "jsonp", "cache": false } ); } but when change this:
`"sajaxsource": "/libclient_final/library/viewtarrif.php", "fnserverdata": function( surl, aodata, fncallback ) { $.ajax( { "url": surl, "data": aodata, "success": fncallback, "datatype": "jsonp", "cache": false } ); }` the data not coming , table header , footer collapse
Comments
Post a Comment