Is that possible to invoke a javascript function in success of datatable ajax call. Here is the code am trying to use,
var oTable = $(\'#app-config\').dataTa
Based on the docs, xhr Ajax event would fire when an Ajax request is completed. So you can do something like this:
let data_table = $('#example-table').dataTable({
ajax: "data.json"
});
data_table.on('xhr.dt', function ( e, settings, json, xhr ) {
// Do some staff here...
$('#status').html( json.status );
} )