Hi!
I read that we can use frameset in jsp page as in html... so maybe I did not
understand how to use frameset in html:
I have a jsp page and I call this for a test:
[...]
<r:page titleId="title_browse">
<f:view>
<%
FacesContext fc = FacesContext.getCurrentInstance();
// set locale for JSF framework usage
fc.getViewRoot().setLocale(Application.getLanguage(fc));
%>
<%-- load a bundle of properties with I18N strings --%>
<f:loadBundle basename="alfresco.messages.webclient" var="msg"/>
<f:loadBundle basename="alfresco.messages.EthicFlow_webclient" var="EFmsg"/>
<%-- set the form name here --%>
<h:form acceptCharset="UTF-8" id="browseTemplate">
<frameset cols = "25%, 25%,*">
<frame src ="../ef/PsPanel.jsp" " />
<frame src ="../ef/PsPanel.jsp" />
<frame src ="../ef/PsPanel.jsp" />
</frameset>
<table>
[...]
</table>
</h:form>
</f:view>
</r:page>
But nothing appears (only my table not the frames) what is wrong here?
Thanks in advance for your help
Sophie