| Author |
Open links in second window
|
|
|
| Hi!
How can I open a page in the portal 6.0 in a second window? A custumer wants to be able to click the link to thier demonstration portal, and then have the page opened in a new browser window...
Thanks
Marius
Norway
| |
| Rama Jaini 2006-10-28, 1:41 pm |
|
You could use target="_blank" in the hyperlink tag or use a javascript popup.
for example:
<wps:urlGeneration contentNode="portal_page_unique_name">
<A href="<% wpsURL.write(out); %>" target="_blank">
<h:outputText value="Click Here"/></A>
</wps:urlGeneration>
Rama.
| |
| Rama Jaini 2006-10-28, 1:41 pm |
|
In my previous reply the hyperlink tag got rendered. see the code here:
<wps:urlGeneration contentNode="portal_page_unique_name">
<!--
<A href="<% wpsURL.write(out); %>" target="_blank">
<h:outputText value="Click Here" /></A> -->
</wps:urlGeneration>
| |
| Rama Jaini 2006-10-28, 1:41 pm |
|
oops! that did'nt show up either. How about this?
href="<% wpsURL.write(out); %>" target="_blank"
|
|
|
|