How to reference bindings inside f:verbatim?
robliNov 6 2009 — edited Nov 6 2009Writing an ADF app in JDev 11g, and want to be able to assign a binding value to an input tag:
<f:verbatim>
<input id="launch1" name="launch1" value="#{sessionScope.<bean>.<property>}"/>
...
</f:verbatim>
... but the framework isn't translating the value of the input, and so I just get the bindings EL appearing in my app. Looking through the EL Expression Builder, I've tried ADF Bindings, ADF Managed Beans and the JSP Objects to get back a value.
How does one supply binding context values to code inside this tag? I've clearly missed something simple.
Thanks in advance.