Sometimes you want to
get current row in table. To apply this you can use the following code in
controller and write it inside processFormRequest method.
public void
processFormRequest(OAPageContext pageContext,
OAWebBean webBean) {
super.processFormRequest(pageContext, webBean);
//Get application Module
OAApplicationModule am = pageContext.getApplicationModule(webBean);
//Get Row Refrence
String rowReference =
pageContext.getParameter(EVENT_SOURCE_ROW_REFERENCE);
//Get current Row using
Row Reference
OARow currRow = (OARow)am.findRowByRef(rowReference);
//Get attribute value
from current row
String attrValue = (String)currRow.getAttribute("AttrName");
}
No comments:
Post a Comment