How to evaluate EL in adf mobile
Getting or setting the value form inputtext
AdfELContext adfELContext = AdfmfJavaUtilities.getAdfELContext();
ValueExpression ve =AdfmfJavaUtilities.getValueExpression("#{bindings.EmpName.inputValue}", String.class);
ve.setValue(adfELContext, "Wim");
Comments