Jump to content

Instead download open in new tab


Recommended Posts

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);    });[/code]

Do you have any suggestion?

Link to comment
Share on other sites

  • Replies 0
  • Created
  • Last Reply

Top Posters In This Topic

Popular Days

Top Posters In This Topic

Popular Days

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now

×
×
  • Create New...