Set minimum and maximum values of a NumberValidator : NumberValidator « Data Model « Flex






Set minimum and maximum values of a NumberValidator

Set minimum and maximum values of a NumberValidator
    
<?xml version="1.0"?>
<mx:Application xmlns:mx="http://www.adobe.com/2006/mxml">
  <mx:NumberValidator source="{inputA}" property="text"
    minValue="{Number(inputMin.text)}" maxValue="{Number(inputMax.text)}" />
  <mx:TextInput id="inputA" />
  <mx:TextInput id="inputMin" text="1" />
  <mx:TextInput id="inputMax" text="10" />
</mx:Application>

   
    
    
    
  








Related examples in the same category

1.NumberValidator used to check a value and if the number is an integerNumberValidator used to check a value and if the number is an integer
2.Use NumberValidator to check negative valueUse NumberValidator to check negative value
3.Check integer value range with NumberValidatorCheck integer value range with NumberValidator
4.Set domain of value to check to int for NumberValidatorSet domain of value to check to int for NumberValidator
5.Using the NumberValidator classUsing the NumberValidator class
6.Config NumberValidator With data BindingConfig NumberValidator With data Binding
7.Using NumberValidator class to ensure that an integer is between 1 and 10Using NumberValidator class to ensure that an integer is between 1 and 10