Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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

share|improve this question

1 Answer

Unfortunately ui:include is implemented as a tag handler. This means it is evaluated and executed when component tree is built and there is no corresponding UIComponent class.

To achieve your goal you would have to use the facelets api like javax.faces.view.facelets.FaceletContext#includeFacelet, after preserving reference to the faceletContext which is accessible during tree construction. This is not a straightforward approach and I would strongly recommend rephrasing your problem and looking for another solution.

I don't know any official guide with tag-component/handler mapping, I am sure some books like "Core Java Server Faces" will help with this though.

You can try to do this in facelets to begin with, something like:

<h:form id="form">
  <ui:include src="#{content.path}"/>
</h:form>
share|improve this answer
Is there any trick using PrimeFaces? – Dr.Lesh Oct 30 '11 at 12:13
I don't think primefaces offers anything extra to solve this. Why you have to alter your view in a programmatic way? Doing this in facelets to begin with should be much easier. – mrembisz Oct 30 '11 at 14:47
How? Can you explain me, please? – Dr.Lesh Oct 30 '11 at 15:14
I have edited my answer with an example. – mrembisz Oct 30 '11 at 16:00
I used it, it works "just a bit", I mean that loads the page (all in Ajax, no refreshes) but the page content doesn't work, and when I reload the page it throws a ClassCastException: Cannot Cast primefaces.AjaxBehavior to java.util.List. Don't know how to do it working properly :( – Dr.Lesh Oct 30 '11 at 16:05
show 1 more comment

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.