Use Submit button to trigger validation : DateValidator « Data Model « Flex






Use Submit button to trigger validation

Use Submit button to trigger validation
   
<?xml version="1.0" encoding="utf-8"?>
<mx:Application xmlns:mx="http://www.adobe.com/2006/mxml">
    
    <mx:DateValidator source="{birthday}" 
                      property="text"
                      inputFormat="mm/dd/yyyy" 
                      allowedFormatChars="/"
                      trigger="{submitButton}" 
                      triggerEvent="click" />
    
    <mx:Text text="Enter your birth date:" />
    
    <mx:TextInput id="birthday" />
    
    <mx:Button label="Submit" id="submitButton" />
</mx:Application>

   
    
    
  








Related examples in the same category

1.Set trigger event for DateValidatorSet trigger event for DateValidator
2.Set source and input format for DateValidatorSet source and input format for DateValidator
3.Bind DateValidator to more than one controlsBind DateValidator to more than one controls
4.Set up input format for DateValidatorSet up input format for DateValidator
5.DateValidator and form input boxesDateValidator and form input boxes
6.Use DateValidator to validate and use DateForamtter to formatUse DateValidator to validate and use DateForamtter to format
7.Validate a Date objectValidate a Date object