Groups | Blog | Home
all groups > sql server reporting services > march 2006 >

sql server reporting services : How to use "TARGET" in "Jump to URL"



angi
3/24/2006 12:00:00 AM
Is it possible to include HTML element "Target" in "Jump to URL"?
If it's possible how to do? Can show me any example code?
Cause I want the new report is open on the other frame not a new window.
Thanks for any help!

Angi

Bruce L-C [MVP]
3/24/2006 10:28:15 AM
This might do what you want:
This is an example of a Jump to URL link I use. This causes Excel to come up
with the data in a separate window:

="javascript:void(window.open('" & Globals!ReportServerUrl &
"?/SomeFolder/SomeReport&ParamName=" & Parameters!ParamName.Value &
"&rs:Format=CSV&rc:Encoding=ASCII','_blank'))"

You have to have SP1 or greater installed.


--
Bruce Loehle-Conger
MVP SQL Server Reporting Services

[quoted text, click to view]

angi
3/27/2006 12:00:00 AM
Thanks for Bruce!
I knew this function and work well.
But I don't want to open the data in a separate window,
I want it opens in another frame on Homepage.
This is my code:

="javascript:void(window.open('" & Globals!ReportServerUrl &
"?/MOJBIS/MojBisLv2-Bu01Sc','_main'))"

'_main' is the frame's name.

The HTML Code as follow:
<frameset rows="64,*">
<frame name="Horizon" scrolling="no" noresize target="contents"
src="tframe.aspx">
<frameset cols="449,*">
<frame name="contents" target="main" src="lframe.aspx">
<frame name="main" src="rframe.aspx">
</frameset>
<noframes>
<body>
</body>
</noframes>
</frameset>

So, I want the report open on "rframe.aspx", and the frame name = "main".
Have any idea?
Thanks for help!

Angi

"Bruce L-C [MVP]" <bruce_lcNOSPAM@hotmail.com> ¼¶¼g©ó¶l¥ó·s»D:eHiQ1$1TGHA.3192@TK2MSFTNGP09.phx.gbl...
[quoted text, click to view]

Bruce L-C [MVP]
3/27/2006 8:49:54 AM
I haven't done this. My guess would have been to put the frame name instead
of _blank. You tried _main, how about putting the work main with no
underscore?


--
Bruce Loehle-Conger
MVP SQL Server Reporting Services



[quoted text, click to view]

angi
3/28/2006 12:00:00 AM
Hi, Bruce,

Thank you very much.
I've done this, the code as follow...

="javascript:void(window.open('" & Globals!ReportServerUrl &
"?/MOJBIS/MojBisLv2-Bu01Sc','main'))"

Using underscore will open the new window!
Last, for "window.open" function there is a reference:
http://www.w3schools.com/htmldom/met_win_open.asp

Thanks again!
Angi

"Bruce L-C [MVP]" <bruce_lcNOSPAM@hotmail.com> ¼¶¼g©ó¶l¥ó·s»D:%23CSU32aUGHA.776@TK2MSFTNGP09.phx.gbl...
[quoted text, click to view]

AddThis Social Bookmark Button