Hi,
I am using Jdev 11.1.1.7 .
I have a read only VO and drag and drop the same as ADF table in the jspx page. In the table I have a select one choice in one column and orderNo in another column .
I want to get OrderNo in value change listener of select one choice i.e getting the row data in value change listener of selectonechoice ?
My code is
<af:table.....
<af:column headerText="Status" id="c2">
<af:selectOneChoice value="#{row.bindings.Status.inputValue}"
id="soc1" autoSubmit="true" valueChangeListener="#{MyBean.valueOrdNo}">
<f:selectItems value="#{row.bindings.Status.items}" id="si1"/>
</af:selectOneChoice>
</af:column>
<af:column headerText="Ord No" id="c1">
<af:outputText value="#{row.OrdNo}">
</af:column>
</af:table>