In JSF2, is it possible to change the of value of src of ui:include dynamically using Ajax request (like for example PrimeFaces p:commandButton)? Thank you.

<h:form>                        
    <h:commandLink value="Display 2" action="#{fTRNav.doNav()}">
        <f:setPropertyActionListener target="#{fTRNav.pageName}" value="/disp2.xhtml" />
    </h:commandLink>
</h:form>

<ui:include src="#{fTRNav.pageName}"></ui:include>

That's what I have right now. Is it possible to make it Ajax (using p:commandButton)?

link|improve this question

feedback

2 Answers

up vote 5 down vote accepted

The JSTL tags as proposed in the other answer are not necessary and it is not nicely reuseable.

Here's a basic example using pure JSF (assuming that you runs Servlet 3.0 / EL 2.2, otherwise you indeed need to use <f:setPropertyActionListener> like as in your question):

<h:form>
    <f:ajax render=":include">
        <h:commandLink value="page1" action="#{bean.setPage('page1')}" />
        <h:commandLink value="page2" action="#{bean.setPage('page2')}" />
        <h:commandLink value="page3" action="#{bean.setPage('page3')}" />
    </f:ajax>
</h:form>

<h:panelGroup id="include">
    <ui:include src="#{bean.page}.xhtml" />
</h:panelGroup>

with

private String page;

@PostConstruct
public void init() {
    this.page = "page1"; // Ensure that default is been set.
}

// Getter + setter.
link|improve this answer
Yes I am using servlet 3.0, but I am not quite sure about the version of EL (how can I know it?). I was about to ask this question, because I definitely didn't want to use JSTL. And this one looks better. Thank you. – Bhesh Gurung Jun 3 '11 at 13:52
1  
EL 2.2 comes hand in hand with Servlet 3.0. So as long as your web.xml is declared conform Servlet 3.0 (and you don't have any proprietary el-api.jar, el-impl.jar etc in your /WEB-INF/lib), it'll work. – BalusC Jun 3 '11 at 14:08
feedback

You need to use the <c:if test="condition"> tag around the ui:include and then when the ajax button is clicked, the panel that holds the ui:include is refreshed.

Example:

First make sure that the jstl core taglib is included by inserting the following namespace in the document:

<html xmlns:c="http://java.sun.com/jsp/jstl/core>"

Then, you can use the <c:if> tag as follows :

<c:if test="#{!logBean.loggedIn}">
    <ui:include src="loginpage.xhtml" />
</c:if>
<c:if test="#{logBean.loggedIn}">
    <ui:include src="home.xhtml" />
</c:if>
link|improve this answer
Does that work with ajax request? – Bhesh Gurung Jun 2 '11 at 19:44
1  
Thank you. It actually works like that. – Bhesh Gurung Jun 2 '11 at 19:56
feedback

Your Answer

 
or
required, but never shown

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