Google Analytics

Thursday, February 23, 2017

Oracle ADF Table row selection button not get current row

When click on ADF table button on a row not show the current row details in the popup

In this case table selection listener over write and make current property execute in the bean method.
We found the the cause for this issue is the queryListner. We removed below property and found the solution.

queryListener="#{bindings.InterviewVOQuery.processQuery}"

Update - 2017.03.02
------------------------

I have found a solution for this. By removing the QueryListner we are disabling the filler functionality. Therefore we need to set popup content delivery to 'immediate' and partialTrigger the table.

Please follow the below link.
https://blogs.oracle.com/shay/entry/popup_details_for_a_table_reco

Update - 2017.03.14
------------------------
However with above solution we are loosing the filterable feature. Therefore we found the perfect
solution in below blog.

http://dstas.blogspot.com/2010/08/column-button-in-read-only-table-edit.html

No comments:

Post a Comment