Package javax.faces.component.html

Examples of javax.faces.component.html.HtmlInputText.validate()


       
        //set the value
        component1.setSubmittedValue("blue");
       
        // invoke component validation
        component1.validate(facesContext);
           
        // check for a error message
        checkMessages(component1);
      
    }
View Full Code Here


       
        //set the value
        component1.setSubmittedValue("blue");
       
        // invoke component validation
        component1.validate(facesContext);
           
        // check for a error message
        checkMessage("Favorite Color must be one of the following: black, yellow, red.", component1);
      
    }
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.