0
我創建動態表,並建立動態textInputs:如何在ADF中設置動態創建表的動態textInput值?
XML下面:
<af:forEach items="#{myRowController.myList}" var = "myItem">
<af:column headerText="#{myItem}" width="104" attributeChangeListener="#{test.column_attributeChangeListener}">
<af:inputText value="" id="tt01"/>
</af:column>
</af:forEach>
</af:table>
問題是:
創建inputTexts具有相同的ID和我輸入的數值沒有按't set table inputText's
我想將值輸入到表中並將所有值提交到表中。