Re: [flexcoders] Custom Validator woes....

2006-06-27 Thread Ralf Bokelberg
Hello Suzy, Did you try the static validateEmail method of the EmailValidator? Cheers, Ralf. On 6/27/06, Suzy Lawson [EMAIL PROTECTED] wrote: I'm building an e-mail client where the To: field can have a comma delimited array of e-mail addresses: [EMAIL PROTECTED], [EMAIL PROTECTED] I have

RE: [flexcoders] Custom Validator woes....

2006-06-27 Thread Jason Szeto
Suzy, The listener, source and trigger are all optional properties of Validators. You can just call the validate() function. Pass in the string you want to validate and it will return the ValidationResult. The validate() function is on the base class, Validator. Jason