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

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


    this.add(datePicker);
    this.add(new DatePicker("datePicker", datePicker));

    this.add(new DropDownChoice("discipline", new PropertyModel(course,
        "discipline"), this.disciplineController.getDisciplines(),
        new DisciplineChoiceRenderer()));

    Map<Enum, Object> params = new HashMap<Enum, Object>();
    params.put(Parameters.SELECTED_ITEM, null);
    params.put(GestionEvenementsPanel.Parameters.IS_NEW, false);
View Full Code Here


    this.add(new SexeDropDownChoice("sexe", new PropertyModel(
        this.categorie, "sexe")).setRequired(true));
    this.add(new NiveauDropDownChoice("niveau").setRequired(true));

    this.add(new DropDownChoice("discipline", this.disciplineController
        .getDisciplines(), new DisciplineChoiceRenderer()));

    if (this.isNew)
    {
      this.add(new Label("labelTitre", "Créer une catégorie"));
    }
View Full Code Here

TOP

Related Classes of net.fqsc.inscriptions.view.form.component.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.