From Api:
$('#myTable').DataTable( {
buttons: {
buttons: [
{
text: 'Alert',
action: function ( e, dt, node, config ) {
config.title ="dynamic title"
}
}
]
}
} );
This is changing the title, but export is not working now. Any suggestion or workaround will help.