Package net.fqsc.inscriptions.view.form.component

Examples of net.fqsc.inscriptions.view.form.component.JoursDropDownChoice


        this.dateNaissance, "annee")).setLabel(new Model("Annees"))
        .setRequired(true));
    this.add(new MoisDropDownChoice("mois", new PropertyModel(
        this.dateNaissance, "mois")).setLabel(new Model("Mois"))
        .setRequired(true));
    this.add(new JoursDropDownChoice("jours", new PropertyModel(
        this.dateNaissance, "jour")).setLabel(new Model("Jours"))
        .setRequired(true));

    final RequiredTextField courriel = new RequiredTextField("courriel",
        new PropertyModel(this.personne, "courriel"));
View Full Code Here


   
    this.add(new SexeDropDownChoice("sexe", new PropertyModel(this.personne, "sexe")).setLabel(new Model("Sexe")).setRequired(true));
           
    this.add(new AnneesDropDownChoice("annees", new PropertyModel(this.dateNaissance, "annee")).setLabel(new Model("Annees")).setRequired(true));
    this.add(new MoisDropDownChoice("mois", new PropertyModel(this.dateNaissance, "mois")).setLabel(new Model("Mois")).setRequired(true));
    this.add(new JoursDropDownChoice("jours", new PropertyModel(this.dateNaissance, "jour")).setLabel(new Model("Jours")).setRequired(true));
   
       
    final RequiredTextField courriel = new RequiredTextField("courriel", new PropertyModel(this.personne, "courriel"));
    courriel.setLabel(new Model("Courriel")).setRequired(true);
    courriel.add(EmailAddressPatternValidator.getInstance());
View Full Code Here

TOP

Related Classes of net.fqsc.inscriptions.view.form.component.JoursDropDownChoice

Copyright © 2018 www.massapicom. 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.