Package org.apache.wicket.markup.html.link

Examples of org.apache.wicket.markup.html.link.PageLink


  }

  protected void createComponents()
  {
    this.add(new GestionFacturesForm("gestionFacturesForm"));
    this.add(new PageLink("listeMembre", FacturesByPersonnePage.class));

    final FeedbackPanel feedback = new FeedbackPanel("feedback");
    this.add(feedback);
  }
View Full Code Here


    final ChoiceRenderer choiceRenderer = new ChoiceRenderer("label", "key");

    add(new DropDownChoice("searchBy", Arrays.asList(model.getOptions()),
        choiceRenderer).setRequired(true));
    add(new RequiredTextField("keyword"));
    add(new PageLink("help", new IPageLink()
    {
      private static final long serialVersionUID = 1L;

      public Class getPageIdentity()
      {
View Full Code Here

    {
      img = new Image("image");
      img.setVisible(false);
    }

    PageLink linkZoom;

    linkZoom = new PageLink("linkZoom", new IPageLink()
    {
      private static final long serialVersionUID = 1L;

      public Page getPage()
      {
        return new ImagePage(choix.getImage());
      }

      public Class getPageIdentity()
      {
        return ImagePage.class;
      }
    });

    linkZoom.add(img);
    form.add(linkZoom);

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

  {
    super();

    this.add(new DisciplinesListView("listeDisciplines"));

    this.add(new PageLink("ajouterDiscipline", new IPageLink()
    {
      private static final long serialVersionUID = 1L;

      public Page getPage()
      {
View Full Code Here

  {
    final Discipline discipline = (Discipline) item.getModelObject();

    item.add(new Label("nom"));

    item.add(new PageLink("modifier", new IPageLink()
    {
      private static final long serialVersionUID = 1L;

      public Page getPage()
      {
View Full Code Here

  {
    super();

    this.add(new ListCategoriesListView("categories"));

    this.add(new PageLink("ajouter", new IPageLink()
    {
      private static final long serialVersionUID = 1L;

      public Page getPage()
      {
View Full Code Here

    item.add(new Label("ageMax", categorie.getAgeMax().toString()));
    item.add(new Label("niveau", categorie.getNiveau()));
    item.add(new Label("sexe", categorie.getSexe()));
    item.add(new Label("discipline", categorie.getDiscipline().getNom()));

    item.add(new PageLink("modifier", new IPageLink()
    {
      private static final long serialVersionUID = 1L;

      public Page getPage()
      {
View Full Code Here

    createComponents();
  }

  private void createComponents()
  {
    add(new PageLink("gestionEnsemblePuces", new IPageLink()
    {
      private static final long serialVersionUID = 1L;

      public Page getPage()
      {
View Full Code Here

    this.add(new RequiredTextField("username", new PropertyModel(this,
        "username")).setLabel(new Model("Username")).add(
        EmailAddressValidator.getInstance()));
    this.add(new PasswordTextField("password", new PropertyModel(this,
        "password")).setLabel(new Model("Password")));
    this.add(new PageLink("inscription", CreationAccountPage.class));
    this.add(new PageLink("motPasseOublie", RetrievePasswordPage.class));

    this.add(new Button("connection", new ResourceModel("connection")));
  }
View Full Code Here

    this.add(new PublicitePanel("pubHeader", PublicitePanel.Zone.Header));
    this.add(new PublicitePanel("pubLeft", PublicitePanel.Zone.Left));
    this.add(new PublicitePanel("pubRight", PublicitePanel.Zone.Right));

    this.add(new PageLink("contact", ContactUsPage.class));
  }
View Full Code Here

TOP

Related Classes of org.apache.wicket.markup.html.link.PageLink

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.