RE: [flexcoders] Form validation in Flex?

2009-05-22 Thread Jake Churchill
It would probably be better to have all forms extend a base component and handle validation there. Jake Churchill CF Webtools 11204 Davenport, Ste. 100 Omaha, NE 68154 http://www.cfwebtools.com 402-408-3733 x103 From: flexcoders@yahoogroups.com [mailto:flexcod...@yahoogroups.com] On

RE: [flexcoders] form validation

2005-03-03 Thread Stephen Gilson
t; data="" groupName="Gender"/ mx:Button label="Check validity" click="mx.validators.Validator.isValid(this, 'formInfo.SelectedGender');" / /mx:FormItem /mx:Form /mx:Application Stephen From: Dimitrios Gianninas [mailto:[EMAIL PROTECTED] Sent: Fri

RE: [flexcoders] form validation

2005-02-25 Thread Dimitrios Gianninas
Hi Robert, For part 1, you willhave to create your own PhoneNumberValidator class that only validates the value if there is one. I had to do the same thing for some other validator. For part 2, I use the StringValidator for validating ComboBoxes, it should be enough,never done it with

RE: [flexcoders] form validation

2005-02-24 Thread Jose Lora
To the second part of your question, Iuse a NumberValidator on the comboBox.selectedIndex property From: Robert Brueckmann [mailto:[EMAIL PROTECTED] Sent: Thursday, February 24,2005 10:10 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] form validation Im having a