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

Popular posts from this blog

php - Why I am getting the Error "Commands out of sync; you can't run this command now" -

linux - Does gcc have any options to add version info in ELF binary file? -

java - Are there any classes that implement javax.persistence.Parameter<T>? -