The following code comes from the JDeveloper Forums courtesy of Frank Nimphus. If added to any event listener fired from "inside" an ADF Table, it prints the row's 1'st attribute and the rowKey.
FacesContext fctx = FacesContext.getCurrentInstance(); ValueBinding vb = (ValueBinding) fctx.getApplication().createValueBinding("#{row}"); JUCtrlValueBindingRef rwbinding = (JUCtrlValueBindingRef) vb.getValue(fctx); System.out.println("--- Key as String --"+rwbinding.getRow().getKey().toStringFormat(true)); System.out.println("--- First Attribute ---"+rwbinding.getRow().getAttribute(1));
Thanks again Frank
No comments :
Post a Comment