Re: Comparing null...

2005-03-30 Thread Barbara Baughman
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 > > >

Re: Comparing null...

2005-03-30 Thread tarun Narang
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

Re: Comparing null...

2005-03-30 Thread Shinobu Kawai
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]> --

RE: Comparing null...

2005-03-30 Thread Chacko, Raj
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