Package org.xrace.view.formcomponents

Examples of org.xrace.view.formcomponents.NiveauDropDownChoice


    ageMax.add(NumberValidator.range(1, 99));
    ageMax.setType(Integer.class);
    this.add(ageMax);

    this.add(new SexeCategorieDropDownChoice("sexe").setRequired(true));
    this.add(new NiveauDropDownChoice("niveau").setRequired(true));

    this.add(new DropDownChoice("discipline", disciplineService.list(),
        new DisciplineChoiceRenderer()));

    if (isNew)
View Full Code Here

TOP

Related Classes of org.xrace.view.formcomponents.NiveauDropDownChoice

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.