Reputation: 311
I have oracle 11gr2 and JDeveloper 11.1.2.1.0 I have 3 tables , that are master detail detail . I want to use pop up for these master and details tables . Can i do it ? Is popup support the master and detail tables ? Thanks
Upvotes: 1
Views: 657
Reputation: 83
you can everything in popup that you are doing in page , it is nothing just a container on page in second layer see-http://andrejusb.blogspot.in/2009/11/crud-operations-in-oracle-adf-11g-table.html http://andrejusb.blogspot.in/2009/03/adf-faces-rich-client-popup-and-master.html
Thanks
Upvotes: 0
Reputation: 19682
Just create a button with <af:showPopupBehavior popupId='mypopup'
to open the popup and a <af:popup id='mypopup'><af:dialog>
structure in which you copy the contents which are currently in the <af:showDetailItem
Upvotes: 1