RE: Formatting (Gregorian)Calendar instances?

2004-02-03 Thread Felix Velasco
try: fmt:formatDate value=${myCalendar.date} var=mmdd type=date pattern=-MM-dd/ that way you'd access the getDate method of the Calendar interface, that returns the equivalent java.util.Date instance -Original Message- From: otisg [mailto:[EMAIL

Re: Re: Formatting (Gregorian)Calendar instances?

2004-02-03 Thread otisg
Muuuchos gracias! I didn't see that DategetTime() method in Calendar. Thanks, Otis On Tue, 3 Feb 2004, Brian Buckley ([EMAIL PROTECTED]) wrote: fmt:formatDatevalue=${myDate.time} var=mmdd type=date pattern=-MM-dd/ Note the .time. -Brian Hello, If

RE: Formatting (Gregorian)Calendar instances?

2004-02-03 Thread Felix Velasco
ps i wrote too fast. It's myCalendar.time, not date, as Brian pointed. sorry -Original Message- From: Felix Velasco [mailto:[EMAIL PROTECTED] Sent: 03 February 2004 13:26 To: 'Tag Libraries Users List' Subject: RE: Formatting (Gregorian)Calendar instances? try: fmt:formatDate

RE: Formatting (Gregorian)Calendar instances?

2004-02-03 Thread Kris Schneider
I think it's actually: ${myCalendar.time} Quoting Felix Velasco [EMAIL PROTECTED]: try: fmt:formatDate value=${myCalendar.date} var=mmdd type=date pattern=-MM-dd/ that way you'd access the getDate method of the Calendar interface, that returns the