Package org.xrace.view.formcomponents

Examples of org.xrace.view.formcomponents.DisciplineChoiceRenderer


    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)
    {
      this.add(new Label("labelTitre", "Créer une catégorie"));
    }
View Full Code Here


    add(new TextField("id").setEnabled(false));
    add(new TextField("nom"));
    add(new DateField("date"));

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

    add(new CheckBox("club"));
    add(new CheckBox("commanditaire"));
    add(new CheckBox("plaque"));
    add(new CheckBox("courseParEquipe")
View Full Code Here

TOP

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

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.