In a JSF page I have:
<h:form id="form">
<h:panelGroup id="content" layout="block"/>
</h:form>
In a Java SessionScoped bean i have a method:
public void fillContent()
{
UIComponent content = FacesContext.getCurrentInstance().getViewRoot().findComponent("form:content");
content.getChildren().clear();
content.getChildren().add(/*New <ui:include src="Page.xhtml"/>*/);
}
What is the Java code to insert the <ui:include src="Page.xhtml"/> as content children?
Where I can find the list for the mapping of all the JSF Java names?
Thank you