Hello, I need to customize the EmailValidator class to perform post
validation on multiple email fields on a flex form. I am using the
mx:model to pass the mulitple email fields to the validator:
<mx:Model id="client">
<registration>
<email>
<emailInput>{emailRegisterInput.text}</emailInput>
<emailCInput>{emailRegisterCInput.text}</emailCInput>
</email>
</registration>
</mx:Model>
<MyComp:EmailRegistrationValidator id="emVReg" source="{client}"
property="email" required="false" listener="{emailRegisterInput}"/>
Does anyone have a working example of how to acomplish this task. I can
get it to work using the a single field emailRegisterInput.text without
the Model tag.
Thank you.