I have the following problem ...
I have an ADF: Table that I believe from my viewObject. .. and I added to it a corecolumn (no binding none) ... and in this column I put a selectbooleancheckbox ....
I wanted to know the following ... how do I know if the user checked or not each table line? .... ie how do I get the value of each line of a certain column ..?
I own in my view object ,,, I did not have problems ... I did the following:
FacesContext fc = FacesContext.getCurrentInstance();
ValueBinding vb = fc.getApplication().createValueBinding("#{bindings}");
DCBindingContainer bc = (DCBindingContainer) vb.getValue(fc);
DCIteratorBinding dcIter = (DCIteratorBinding)bc.get("TipoTapeView1Iterator");
dcIter .setRangeSize(-1); //ALL ROWS
Row[] rows = dcIter.getAllRowsInRange();
for(int i=0; i<rows.length; i++) {
Row r = rows[i];
JOptionPane.showMessageDialog(null,r.getAttribute("IdTape"));
}
I do not know if you gave to understand ..: Wink:
Any suggestion It will be very welcome ...