Package org.xrace.view.formcomponents

Examples of org.xrace.view.formcomponents.CategorieChoiceRenderer


  {
    this.add(new Label("course.evenementNomCourseNom"));
    this.add(new Label("personne.nomPrenom"));

    this.add(new DropDownChoice("categorie", course.getCategories(),
        new CategorieChoiceRenderer()).setRequired(true));

    final List<Club> clubs = clubService.findByCourse(course);
    this.add(new DropDownChoice("club", clubs, new ClubChoiceRenderer())
        .setRequired(false).setEnabled(course.isClub()));
View Full Code Here


      this.add(new Label("personne.nom"));
      this.add(new Label("personne.prenom"));

      final DropDownChoice categorieChoice = new DropDownChoice(
          "categorie", categorieService.list(),
          new CategorieChoiceRenderer());
      categorieChoice.setRequired(true);
      categorieChoice.setEnabled(isNew);
      this.add(categorieChoice);

      final RequiredTextField plaque = new RequiredTextField(
View Full Code Here

    form.add(new RequiredTextField("nbCourses").setType(Integer.class));
    form.add(new RequiredTextField("montant").setType(Double.class));
    form.add(new DropDownChoice("categorie", categorieParticipanteService
        .getCategories(rabaisEvenement.getEvenement().getSaison()),
        new CategorieChoiceRenderer()));
    form.add(new TextField("description"));

    form.add(new Button("submit", new ResourceModel("submit"))
    {
      private static final long serialVersionUID = 1L;
View Full Code Here

TOP

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

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.