In ADF Application we can read the parameters passed in the URL and display them as an output text using a simple EL (Expression language).
#{param.paramName}
Sample Jspx page:

Page in browser:

<af:inputText value=”#{param.dept eq null? bindings.DepartmentId.inputValue: param.dept}” />
Browser output when URL:

Browser output when URL:

This post is intended to show how the requirement can be fulfilled with the help of EL.
No comments:
Post a Comment