The NumberValidator class validates a number. You can specify the minimum and maximum range of value by using the minValue and maxValue property.
The NumberValidator class validates a number. You can specify the minimum and maximum range of value by using the minValue and maxValue property.The NumberValidator class validates a number. You
can specify the minimum and maximum range of value by using the minValue and
maxValue property. You can specify the domain property for integer value. You
can check the value is negative or not by using allowNegative property.
The tag of NumberValidator is <mx:NumberValidator>.
<?xml version="1.0" encoding="utf-8"?> <s:Application xmlns:fx="http://ns.adobe.com/mxml/2009" xmlns:s="library://ns.adobe.com/flex/spark" xmlns:mx="library://ns.adobe.com/flex/mx" minWidth="955" minHeight="600"> <fx:Script> <![CDATA[ import mx.controls.Alert; ]]> </fx:Script> <fx:Declarations> <fx:Model id="CheckNumber"> <numberInfo> <Number>{agetxt.text}</Number> </numberInfo> </fx:Model> <mx:NumberValidator source="{agetxt}" property="text" integerError="Enter Integer value" minValue="21" maxValue="35" domain="int" trigger="{btn}" triggerEvent="click" valid="Alert.show('Validation Successful');"/> </fx:Declarations> <s:Panel title="NumberValidator Example" width="550"> <mx:Form height="94" width="548" backgroundColor="#101446" color="#FFFFFF"> <mx:FormItem label="Enter an age between 21 and 35: "> <s:TextInput id="agetxt" width="100%" color="#000000"/> </mx:FormItem> <mx:FormItem > <s:Button id="btn" label="Check Validation" chromeColor="#5F1B0C"/> </mx:FormItem> </mx:Form> </s:Panel> </s:Application> |