我已经解决了我之前发布的问题:
现在我想知道如何获取表单中修改的值并传递给我的 bean。
这就是我的做法:
形式:
<ui:repeat value="#{myBean.myList}" var="item">
<td class="icePnlGrdCol1" id="nacionI-0-#{item.index-1}">
<input class="iceInpTxt celdaNacionI"
id="I#{item.index gt 9 ? '':0}#{item.index}"
name="I#{item.index gt 9 ? '':0}#{item.index}"
title="I#{item.index gt 9 ? '':0}#{item.index}" type="text"
value="#{item.valor}" />
</td>
</ui:repeat>
在豆子里:
私有列表 iniciosMesList = null;
CeldaGrid 是一个带有 getter/setter 的类
我希望获取表单中每个 inputText 的值,然后重新创建列表以传递给我的数据库。
我怎样才能访问这个值???
谢谢