Package org.apache.wicket.markup.html.form

Examples of org.apache.wicket.markup.html.form.ImageButton


   * @param parameters
   *            Page parameters (ignored since this is the home page)
   */
  public Home(final PageParameters parameters)
  {
    add(new ImageButton("beer"));

    // Add a couple of links to be able to play around with the session
    // locale
    add(new Link("goCanadian")
    {
View Full Code Here


   */
  private static final long serialVersionUID = 1L;

  public InvalidImageButtonPage()
  {
    add(new ImageButton("invalidImage", new Model("toto.gif")));
  }
View Full Code Here

        }
      });

      add(new LinesListView("lines"));

      add(new ImageButton("saveButton"));

      add(new Link("resetButtonLink") {
        public void onClick() {
          InputForm.this.modelChanged();
        }
View Full Code Here

TOP

Related Classes of org.apache.wicket.markup.html.form.ImageButton

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.