Requirement – How get handle to components which are inside the af:iterator component in ADF
Implementation –
-> Bind iterator to bean instance (of UIXIterator).
-> From your logic, to read through components data, you can use
Latest tip and information on Java and Oracle Fusion Middleware/Weblogic
Requirement – How get handle to components which are inside the af:iterator component in ADF
Implementation –
-> Bind iterator to bean instance (of UIXIterator).
-> From your logic, to read through components data, you can use
Requirment- Get the current row of table in ADF
DCBindingContainer bindings = (DCBindingContainer)getBindings();
DCIteratorBinding dcIter = bindings.findIteratorBinding("IOOrderLinesVO4Iterator");
RowSetIterator lineRSIter = dcIter.getRowSetIterator();
Row r = lineRSIter.getCurrentRow();