If you have the following code:

<t:div rendered="false">
   <h:outputText value="#{backingBean.someGetterMethod}" />
</t:div>

Should getSomeGetterMethod() be invoked? My initial thought was if the parent's rendered attribute was false, the value binding expression *shouldn't* be evaluated. Using MyFaces 1.1.1 and Facelets 1.10, it is being evaluated. Ideally if rendered is false, than I don't want all the ValueBinding expressions underneath that tag to be evaluated.
Any thoughts?


Reply via email to