I am trying to do this: <core:if test="${property.length() >= min}">
But it throws an Invalid comparison : GE exception. If I do
<core:if test="${property.length() == min}">
or
<core:if test="${property.length() >= 4}">
they both come out fine. Is there something I can do to get the first one to work?
I believe you might be hitting a type coercion problem. Can you try the CVS version of jexl and see if that works for you?
-pete
--------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
