java - Can I use multiple xhtml pages in the one xhtml page and how to access(references to them ) those in manged bean class? -
1)how include many xhtml pages in 1 xhtml page 2) how references them in managed bean class
you need try this
<ui:include src="/page.xhtml"> <ui:param value="value" name="name" /> </ui:include>
here, ui:param used pass parameter.
Comments
Post a Comment