Package org.apache.wicket.markup.html.border

Examples of org.apache.wicket.markup.html.border.Body


      "If you see this message wicket is properly configured and running"));

    MyBorder border = new MyBorder("border");
    add(border);

    Body body = border.getBodyContainer();
    body.add(new TextField<String>("textfield", new PropertyModel<String>(this, "textfield")));
    body.add(new Label("lbltextfield", new PropertyModel<String>(this, "textfield")));
    body.add(new MyTextField("datefield", new PropertyModel<String>(this, "datefield")).setOutputMarkupId(true));
    body.add(new Label("lbldatefield", new PropertyModel<String>(this, "datefield")));
    body.add(new MyDateField("datefield2", new PropertyModel<String>(this, "datefield2")).setOutputMarkupId(true));
    body.add(new Label("lbldatefield2", new PropertyModel<String>(this, "datefield2")));
  }
View Full Code Here

TOP

Related Classes of org.apache.wicket.markup.html.border.Body

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.