Set trigger event for DateValidator : DateValidator « Data Model « Flex






Set trigger event for DateValidator

Set trigger event for DateValidator
   
<?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.Use Submit button to trigger validationUse Submit button to trigger validation
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