I have multiple tables on my web page and each one is a DataTable, it is working fine.
I want to enable the export to excel functionality on each of the datatable but the button should be outside the table DOM (and each table should have its own button to export).
I can genrate the HTML5 button inside the table DOM using:
$('#example').DataTable( {
dom: 'Bfrtip',
buttons: [
'copyHtml5',
'excelHtml5',
'csvHtml5',
'pdfHtml5'
]
} );
But i want someway by which i can attach a button outside the table DOM to act as a export to excel for specific table.