In a SSRS 2008 R2 report, I am able to have the users open a pdf document in a new window by using the following code in the action field of a textbox property:
="javascript:void(window.open('http://test1.op.org/ReportServer/Pages/Resource.aspx?%2fboards%2fImages%2fHS.pdf'))".
My goal is not to hard code the url path. I would like the url path to be dynamic based upon which report server the ssrs report is running from.
Basically I would like to replace the http://test1.op.org/ReportServer with the Globals!ReportServerUrl variable that report server has a available.
I would like to replace the above expression with the following:
="javascript:void(window.open('Globals!ReportServerUrl/Pages/Resource.aspx?%2fboards%2fImages%2fHS.pdf'))". However this expression does not work.
Thus can you tell me how to use the Globals!ReportServerUrl ssrs item with the javasctript window open statement so that the expression works correctly?