Search This Blog

Friday, 19 April 2013

Get value of LOV/choiceList programmaticaly in bean instead of index in Oracle ADF


Requirment- Get value of LOV/choiceList programmaticaly in bean instead of index in Oracle ADF

When you write like In backing bean we get the index, not the value... most of the developer do this mistake...
JSFUtils.resolveExpression(“#{bindings.EmployeeId.inputValue}”); —- We got the index
Instead of use attributeValue to get the value in bean.use this code in the bean or as the EL
JSFUtils.resolveExpression(“#{bindings.EmployeeId.attributeValue}”);

No comments:

Post a Comment