Not expression

HelloCan you 'not' a result using ! like so:rendered="#{!bean.rtnBoolean}" />It doesn't seem to work for me...J
[191 byte] By [jamesclintona] at [2007-11-26 15:20:37]
# 1
This should work.Are you using boolean or Boolean? If using Boolean, you have to change it to #{bean.rtnBoolean != null && !bean.rtnBoolean}. Or just accept the fact that null would evaluate to true.
BalusCa at 2007-7-8 11:48:35 > top of Java-index,Enterprise & Remote Computing,Web Tier APIs...
# 2
I see. Thanks BalusC, your a life saver...
jamesclintona at 2007-7-8 11:48:35 > top of Java-index,Enterprise & Remote Computing,Web Tier APIs...