Using <ui:repeat><h:inputText> on a List<String> doesn't update model values
Asked Answered
R

1

9

Here is the scenario (simplified):

There is a bean (call it mrBean) with a member and the appropriate getters/setters:

private List<String> rootContext;

public void addContextItem() {
    rootContext.add("");
}

The JSF code:

<h:form id="a_form">
            <ui:repeat value="#{mrBean.stringList}" var="stringItem">
                    <h:inputText value="#{stringItem}" />
            </ui:repeat>
            <h:commandButton value="Add" action="#{mrBean.addContextItem}">
                <f:ajax render="@form" execute="@form"></f:ajax>
            </h:commandButton>
</h:form>

The problem is, when clicking the "Add" button, the values that were entered in the <h:inputText/> that represent the Strings in the stringList aren't executed.

Actually, the mrBean.stringList setter (setStringList(List<String> stringList)) is never called.

Any idea why?

Some info - I'm using MyFaces JSF 2.0 on Tomcat 6.

Rabinowitz answered 28/5, 2012 at 7:26 Comment(0)
T
25

The String class is immutable and doesn't have a setter for the value. The getter is basically the Object#toString() method.

You need to get/set the value directly on the List instead. You can do that by the list index which is available by <ui:repeat varStatus>.

<ui:repeat value="#{mrBean.stringList}" varStatus="loop">
    <h:inputText value="#{mrBean.stringList[loop.index]}" />
</ui:repeat>

You don't need a setter for the stringList either. EL will get the item by List#get(index) and set the item by List#add(index,item).

Tribulation answered 28/5, 2012 at 11:39 Comment(2)
Thanks! I figured the problem was with the values being immutable but I didn't know if JSF could somehow overcome this. This really explains it so thanks.Rabinowitz
So, loop.index here returns the index of the current element of the list?Vallejo

© 2022 - 2024 — McMap. All rights reserved.