Hello,
this might be beyond the scope of this implementation, but is it possible to download the exported excel file throught jQuery AJAX??
Thanks in advance
I was able to solve the problem. I'm using 'store' method to save the file on the server, and then I send the response (the path to the file):
export.done(function (data) {
window.location.href = data;
});
And the file can be donwloaded.
Most helpful comment
I was able to solve the problem. I'm using 'store' method to save the file on the server, and then I send the response (the path to the file):
export.done(function (data) {window.location.href = data;});And the file can be donwloaded.