Skip to Main Content

Java EE (Java Enterprise Edition) General Discussion

Announcement

For appeals, questions and feedback about Oracle Forums, please email oracle-forums-moderators_us@oracle.com. Technical questions should be asked in the appropriate category. Thank you!

How to work JSF with iframe

843842Jan 26 2007 — edited Jan 27 2007
This is my xhtml page. Here i am using <iframe> and giving source like as shown below,

<html xmlns="http://www.w3.org/1999/xhtml"
xmlns:h="http://java.sun.com/jsf/html"
xmlns:f="http://java.sun.com/jsf/core">
<body>
<f:view>
<h:form>
<iframe width="100%" height="110%" src="main/chartSummary/visits1.xhtml">
</iframe>
</h:form>
</f:view>
</body>
</html>

and this is my visits.xhtml page.

<html xmlns="http://www.w3.org/1999/xhtml"
xmlns:ui="http://java.sun.com/jsf/facelets"
xmlns:h="http://java.sun.com/jsf/html"
xmlns:f="http://java.sun.com/jsf/core">
<body>
<f:view>
<h:form>
<h:dataTable id="adresstable">
<h:column id="date">
<f:facet name="header">
<h:outputText value="FName" />
</f:facet>
<h:outputText value="Vinutha" />
</h:column>
<h:column id="title">
<f:facet name="header">
<h:outputText value="FName" />
</f:facet>
<h:outputText value="ML}" />
</h:column>
</h:dataTable>
</h:form>
</f:view>
</body>
</html>

Now, when i deploy first file, only frame is displaying but its not displaying JSF components within frame.

So, how to work JSF with iframe.......

Thanks,
Vinutha.
Comments
Locked Post
New comments cannot be posted to this locked post.
Post Details
Locked on Feb 24 2007
Added on Jan 26 2007
2 comments
954 views