function readOnly(count){ }
Starting November 20, the site will be set to read-only. On December 4, 2023,
forum discussions will move to the Trailblazer Community.
+ Start a Discussion
BrettGusBrettGus 

inputField rendered expressions?

While the VF documentation says that the inputField rendered attribute is only a boolean value, I've also seen examples where this can be an expression.  For example, <apex:inputText value="{!dynamicCase[caseField]}"rendered="{!IF(contains(caseField, "Contact"), true, false)}"/>.  However, I tried using an Includes function in rendered and it didn't work.  What kind of expression is allowed in this field?

aballardaballard

Since rendered requires a Boolean value, you shouod be avle to use any expression that results in a Boolean value.