Skip to content Skip to sidebar Skip to footer

How Perform Ssrs Url Action Without Triggering Print Dialog?

I have several SQL Server Reporting Services reports with text boxes having URL actions that look like this: ='javascript:void(window.open('http://...some-web-site...=' + Fields!so

Solution 1:

Try testing the JavaScript with just "google.com" and see if the print dialog opens.

="javascript:void(window.open('http://google.com" + "','_blank'))"

Does the print dialog open for other urls or just the one you're testing? Have you testing this on other machines?

Post a Comment for "How Perform Ssrs Url Action Without Triggering Print Dialog?"