我想用JSF中的用户输入来更新我的数组列表中的int amount
,但是使用ui:repeat总是使我的数组列表值为0?有什么方法可以更新arraylist吗?我当前的金额显示在inputText字段中,但是如果我更改此字段中的数字,金额不会更改。
<ui:repeat var = "section" value = "#{eventMB.eventTo.sections}">
<h:outputLabel value="#{section.instrument}" />
<h:inputText value="#{section.amount}"></h:inputText>
</ui:repeat>