Hi,
I noticed this behaviour of JSF EL. 1.
<h:panelGroup rendered="#{!admissionBean.requestStatus=='PR'}">
..some buttons without rendered attribute
</h:panelGroup>
2.
<h:inputText size="6" value="#{dimension.newWeight}" disabled="#{admissionBean.requestStatus=='PR'}"></h:inputText>
1 is not rendered. 2. text box is not disabled.
How can both happen together? textbox not disabled means requestStatus is not equal to PR. that means rendered condition of panel group should be true.
Any help?Am I missing any thing here.
Thanks