I am using JDeveloper 12.1.2
Page has 3 components:
- table
- button
- outputFormatted text component
When user selects certain row, button is enabled/disabled based on the backing bean logic. It works fine:
<af:button text="Go to Reports!" id="b1" action="#{backingBeanScope.Studybrowse.b1_action}"
disabled="#{!backingBeanScope.Studybrowse.userAuthStdNotExp}"
partialTriggers="t1"/>
However when I apply the very same boolean to the rendered property of outputFormatted, it stays not visible (not rendered)
<af:outputFormatted value="You are not authorized or study expired" id="of1"
rendered="#{!backingBeanScope.Studybrowse.userAuthStdNotExp}"
inlineStyle="color:Red;" partialTriggers="t1"/>
Anyone knows why?