Users List"
> Sent: Wednesday, March 30, 2005 10:29 PM
> Subject: Re: Comparing null...
>
>
> > Hi Sashi,
> >
> > > Can we compare null condition in velocity
> > >
> > > # if ($type != null)
> > >
> > > #end
> >
>
hi shashi
try this too
#if(!$type)
...statements
#end
- Original Message -
From: "Shinobu Kawai" <[EMAIL PROTECTED]>
To: "Velocity Users List"
Sent: Wednesday, March 30, 2005 10:29 PM
Subject: Re: Comparing null...
> Hi Sashi,
>
> > Can
Hi Sashi,
> Can we compare null condition in velocity
>
> # if ($type != null)
>
> #end
Check out here for more...
http://wiki.apache.org/jakarta-velocity/VelocityFAQ
Best regards,
-- Shinobu
--
Shinobu Kawai <[EMAIL PROTECTED]>
--
Try
#if($null.isNotNull($type))
#if($null.isNull($type))
-Raj
-Original Message-
From: Majji, Sashibhushan [mailto:[EMAIL PROTECTED]
Sent: Wednesday, March 30, 2005 10:57 AM
To: velocity-user@jakarta.apache.org
Subject: Comparing null...
Hi All,
Can we compare null condition in veloc