query regarding fixing the page size
Posted
by sukhada
on Stack Overflow
See other posts from Stack Overflow
or by sukhada
Published on 2010-04-23T05:06:06Z
Indexed on
2010/04/23
5:13 UTC
Read the original article
Hit count: 189
java
-->
<f:subview id="header">
<tiles:insert definition="page.header" flush="false"/>
</f:subview>
<!-- </h:panelGroup>-->
<h:panelGroup id="topMenu" >
<tiles:insert definition="page.topMenu" flush="false"/>
</h:panelGroup>
<h:panelGroup id="pageContext">
<f:subview id="body">
<tiles:insert attribute="body" flush="false"/>
</f:subview>
</h:panelGroup>
<f:facet name="footer">
<f:subview id="footer">
<tiles:insert definition="page.footer" flush="false"/>
</f:subview>
</f:facet>
</h:panelGrid>
this is structure or layout of page in tiles but m loading another page the it disturbing the layout the layout so how can i fix the page size?
© Stack Overflow or respective owner