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.