Re: [flexcoders] Re: DateField date format

2006-05-27 Thread poonam vora
hey there is a very good example for date formatter as well as date validatorjust try out,, mght be its a thing which u want?xml version="1.0" encoding="utf-8"?!-- Simple example to demonstrate the Formatter. --mx:Application xmlns:mx="http://www.adobe.com/2006/mxml" backgroundColor="#FF"

Re: [flexcoders] Re: DateField date format

2006-05-24 Thread Misael
Thanks a lot guys, works just fine!On 5/24/06, tyombria [EMAIL PROTECTED] wrote: Hi, Misael. When you define a labelFunction for the DateField component to format date for output you must also define parseFunction. Inverse function to labelFunction. For example: private var dateField :

[flexcoders] Re: DateField date format

2006-05-23 Thread tyombria
Hi, Misael. When you define a labelFunction for the DateField component to format date for output you must also define parseFunction. Inverse function to labelFunction. For example: private var dateField : DateField = new DateField(); dateField.labelFunction = myLabelFunction;