<jx:if test="${authenticated == true"}>
'authenticated' is a boolean bizdata property. The test as written doesn't work — I have to write it like this
<jx:if test="${authenticated == 'true'"} />
Why would that be? It seems odd that there should be a conversion to string at work here, since Jexl is not limited to string types. Am I doing something funny to make this happen?
thanks, mark
--------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
