$(document).ready(function() {
var editor = new $.fn.dataTable.Editor( {
"ajaxUrl": "php/browsers.php",
...
} );
editor.on('onPreSubmit', function ( e, data ) {
delete data.action;
data.d = JSON.stringify( data );
} );
} );
processData:
By default, data passed in to the data option as an object (technically, anything other than a string) will be processed and transformed into a query string, fitting to the default content-type "application/x-www-form-urlencoded". If you want to send a DOMDocument, or other non-processed data, set this option to false.
It looks like you're new here. If you want to get involved, click one of these buttons!
Get useful and friendly help straight from the source.