Package wicket.markup.html.form

Examples of wicket.markup.html.form.DropDownChoice


    final TextField datePicker = new TextField("date", Date.class);
    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);
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

    plaque.add(NumberValidator.range(1, 99999));
    plaque.setType(Integer.class);
   
    licence = new RequiredTextField("licence", new PropertyModel(this.afterInfoSaison, "noLicence"));
   
    final DropDownChoice categorieChoice = new DropDownChoice("categorie", new PropertyModel(this.afterInfoSaison,"categorie"),this.categories.getList(), new CategoryChoiceRender());
    this.add(categorieChoice.setRequired(true));
    this.add(plaque);
    this.add(licence);
    this.add(new Label("nom", new PropertyModel(this.personne, "nom")));
    this.add(new Label("prenom", new PropertyModel(this.personne, "prenom")));
 
View Full Code Here

          .getConceptConfig();
      String currentLanguage = countryLanguage.getLanguage();
      List languageList = countryLanguages.getLanguageList();

      IModel choiceModel = new Model(currentLanguage);
      DropDownChoice countryLanguageChoice = new CountryLanguageChoice(
          "countryLanguageChoice", choiceModel, languageList);
      add(countryLanguageChoice);
      if (!app.isConceptDisplayAllowed(getAppSession(),
          countryLanguageConceptConfig)) {
        countryLanguageChoice.setVisible(false);
      }
    } catch (Exception e) {
      log.error("Error in CountryLanguageChoicePanel: " + e.getMessage());
    }
  }
View Full Code Here

        "prixTotal")));

    this.add(new TextField("commenditaire", new PropertyModel(this.cart,
        "commenditaire")));

    final DropDownChoice dropDownChoice = new DropDownChoice("club",
        new PropertyModel(this.cart, "clubOid"), this.clubsCtrl
            .getClubs(), new ClubChoiceRender());
    dropDownChoice.setRequired(false);
    this.add(dropDownChoice);

    this.add(new Button("payer")
    {
View Full Code Here

TOP

Related Classes of wicket.markup.html.form.DropDownChoice

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.