Hi,
I am using a flex validator and it does not show consistency when showing a valid/not valid response to change event.For example in the number field first try and get a input required error and then starting typing some number like 22.The change trigger event does get fired. It still shows the error. It does not happen all the time but it is fairly consistent. Sometimes the error message also does not show up on mouse over. I saw a bug beign reported with same issue, http://bugs.adobe.com/jira/browse/SDK-13005. Any solution to fix this? <?xml version="1.0" encoding="utf-8"?> <mx:Application xmlns:mx="http://www.adobe.com/2006/mxml" layout="absolute" > <mx:VBox width="100%" horizontalAlign="left"> <mx:Spacer height="7"/> <mx:Text text="Validation Custom"/> <mx:HBox> <mx:Text text="Name"/> <mx:TextInput id="nameValue"/> </mx:HBox> <mx:HBox> <mx:Text text="Number"/> <mx:TextInput id="numValue"/> </mx:HBox> </mx:VBox> <mx:NumberValidator id="numberV" source="{numValue}" property="text" precision="2" required="true" triggerEvent="change" maxValue="2222222.22"/> <mx:StringValidator id="nameV" source="{nameValue}" property="text" required="true" maxLength="40" triggerEvent="change"/ > </mx:Application> Thanks --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Flex India Community" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/flex_india?hl=en -~----------~----~----~----~------~----~------~--~---

