如何将数据从一个adf:table复制到ADF中的另一个?

时间:2019-03-14 07:54:42

标签: java oracle-adf

我有一个包含2个af:tables的jsff 第一个称为“目标表”:

<af:table>
 <af:column>
  <af:outputLabel value="#{binding.objId.inputValue}"/>
 </af:column>
 <af:column>
  <af:outputLabel value="#{binding.objName.inputValue}"/>
 </af:column>
 <af:column>
  <af:inputText value="#{binding.comment.inputValue}"/> // the user will enter data in this 
 </af:column>
</af:table>

我还有另一个具有相同想法的表,称为里程碑:

 <af:table>
 <af:column>
  <af:outputLabel value="#{binding.MilId.inputValue}"/>
 </af:column>
 <af:column>
  <af:outputLabel value="#{binding.MilName.inputValue}"/>
 </af:column>
 <af:column>
  <af:inputText value="#{binding.comment.inputValue}"/> // the user will enter data in this 
 </af:column>
</af:table>

我要做的是遍历这两个表,如果用户输入了注释,那么我将对另一个名为注释的视图对象执行CreateWithParams操作,而我对此没有任何疑问

,值将为: 当前行的somevalues +一些静态值我将根据迭代器从中复制数据来设置。 如何做到这一点?

0 个答案:

没有答案