> 
> > <c:if test="${nc.readyDate !=''}"> seems to
> > always return true  whether it contains a value or not..
> > 
> > how should i rewrite the test?
> 
> Use the empty operator. ${empty nc.readyDate} will return true if 
> readyDate has not been populated.
> 
> -Rahul
> 

... and ${not empty nc.readyDate} for your specific test

Chris

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

Reply via email to