|
Home > Archive > WebSphere Portal Server > March 2007 > Custom Skin, portlet help issues
You are viewing an archived Text-only version of the thread.
To view this thread in it's original format and/or if you want to reply to
this thread please [click here]
| Author |
Custom Skin, portlet help issues
|
|
|
| I've spent all morning trying to figure out how to get a custom skin that will open the help page for a portlet in a window without the portal header on it.
The code I'm using to call the help page is in Control.jsp for skin ORIXBorderless:
<portal-skin:portletHelp newWindow="true" >
<a href="<%=wpsPortletHelpURL%>" target="portletHelpWindow"
onClick="javascript: window.open(this. href,'portletHelpWindow','resizable=yes,
scrollbars=yes,menubar=no,toolbar=no,sta
tus=no,width=450px,height=260px,screenX=
200,screenY=200,top=200,left=200').focus(); return false;">
<img border="0" align="absmiddle"
src='<portal-logic:urlFindInSkin file="title_help.gif"/>'
alt="<portal-fmt:text key='help' bundle='nls.titlebar'/>"
title="<portal-fmt:text key='help' bundle='nls.titlebar'/>">
</a>
</portal-skin:portletHelp>
That opens up the help JSP for a portlet with portal banner on it. We don't want it to appear on popup portlet help.
|
|
|
|
|