You can use the below method to get an iterator of ADF Rich Table.
You pass ADF Rich Table component and you will get DCIterator of table.
You pass ADF Rich Table component and you will get DCIterator of table.
public static DCIteratorBinding getDciteratorFromTable(RichTable table) { CollectionModel model = (CollectionModel)table.getValue(); JUCtrlHierBinding treeBinding = (JUCtrlHierBinding)model.getWrappedData(); return treeBinding.getDCIteratorBinding(); }You can import the following classes
import oracle.adf.model.binding.DCIteratorBinding; import oracle.adf.view.rich.component.rich.data.RichTable; import oracle.jbo.uicli.binding.JUCtrlHierBinding; import org.apache.myfaces.trinidad.model.CollectionModel;Thanks
thanx
ReplyDeleteThanks
ReplyDelete