> From: Wendy Smoak 
> It turns out that I really need this:
> <c:when test="${accountView.marketValue <
> accountView.historicGiftValue}">
> They're both Strings.  No wonder it thinks that 76201.31 > 101000.94!

Never mind... I tricked it, with help from Kris and A.3.5.1 which says
that if there is a String containing a '.', it will be coerced into a
Double:

<c:when test="${(accountView.marketValue -
accountView.historicGiftValue) < 0.0}">

Thanks,
-- 
Wendy Smoak

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to