Server Side export
Server Side export
Hey @allan
I extend excelHtml5 to make a download from server. I generate a file on aws and return the signed url to the client inside action: function(e, dt, button, config)
I have two question here:
1- How can I signal button spinner to stop when the operation is complete?
2- Is there any chance to provide this url to the datatables to complete download on browser.
Answers
button().processing()
. Inside the action function it would bebutton.processing(false);
.ajax
is how to tell DataTables where to get the data from.Allan