Mega Code Archive

 
Categories / Flex / Development
 

Validate handler and invalid handler

<?xml version="1.0" encoding="utf-8"?> <mx:Application xmlns:mx="http://www.adobe.com/2006/mxml" layout="absolute">   <mx:Script>            import mx.events.ValidationResultEvent;       private function invalidHandler(event:ValidationResultEvent):void {         usernameItem.setStyle("color", 0xFF0000);       }       private function validHandler(event:ValidationResultEvent):void {         usernameItem.setStyle("color", 0x000000);      }      </mx:Script>   <mx:Form>     <mx:FormHeading label="Sample Form"/>     <mx:FormItem id="usernameItem" label="Name">       <mx:TextInput id="username"/>     </mx:FormItem>     <mx:FormItem>         <mx:Button id="button" label="Submit" />     </mx:FormItem>   </mx:Form>   <mx:Validator id="validator" source="{username}" property="text" invalid="invalidHandler(event)" valid="validHandler(event)" listener="{null}" /> </mx:Application>