Looping over iterator in backing bean
DCIteratorBinding itr = ADFUtils.findIterator("InvestigationsRoIterator");
Row[] rows = itr.getAllRowsInRange();
for (Row row : rows){
if (row != null) {
--do the logic
}
}
Row[] rows = itr.getAllRowsInRange();
for (Row row : rows){
if (row != null) {
--do the logic
}
}
Comments