Components Flex


    
    xmlns:s="library://ns.adobe.com/flex/spark" xmlns:mx="library://ns.adobe.com/flex/mx">
    
        
    

     
         
        import mx.events.ValidationResultEvent; 
        private var vResult:ValidationResultEvent; 
        // Function to validate data and submit it to the server. 
        private function validateAndSubmit():void { 
            // Validate the required fields. 
            vResult = fNameV.validate(); 
            if (vResult.type==ValidationResultEvent.INVALID) 
                return; 
            vResult = lNameV.validate(); 
            if (vResult.type==ValidationResultEvent.INVALID) 
                return; 
            // Since the date requires 3 fields, perform the validation 
            // when the Submit button is clicked. 
            vResult = dayV.validate(); 
            if (vResult.type==ValidationResultEvent.INVALID) 
                return; 
            // Invoke any other validators or validation logic to make 
            // an additional check before submitting the data. 
            // Submit data to server. 
        } 
      
    

    
        
        
            
                
                    {monthInput.text}
                    {dayInput.text}
                    {yearInput.text}
                

                
                    {fNameInput.text}
                    {lNameInput.text}
                

                {phoneInput.text}
            

        
        
                    source="{fNameInput}" property="text" />
                    source="{lNameInput}" property="text" />
                    property="text" />
        
                    daySource="{dayInput}" dayProperty="text" monthSource="{monthInput}"
            monthProperty="text" yearSource="{yearInput}" yearProperty="text" />