Skip to Main Content

Java Development Tools

Announcement

For appeals, questions and feedback about Oracle Forums, please email oracle-forums-moderators_us@oracle.com. Technical questions should be asked in the appropriate category. Thank you!

Adf : Get table row in Value Change Listener of selectOneChoice ?

Ram InturiFeb 9 2015 — edited Aug 20 2019

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>

Comments
Locked Post
New comments cannot be posted to this locked post.
Post Details
Locked on Mar 9 2015
Added on Feb 9 2015
6 comments
1,528 views