I'm using visualize.js and when I export a report in PDF format, I want instead of download the report opens in a new tab.
I use the next code to download the report:
report.export({ outputFormat: 'pdf' }).done(function (link, request) { var url = link.href ? link.href : link; window.open(url); }).fail(function (e) { alert(e.message); });
Do you have any suggestion?
0 Answers:
No answers yet