Wicket Remove

wicket.markup.html.panel.Panel

[back to the reference]

Use panels to group markup and components.

Here are some panel contents for ya.
Put arbitrairy Wicket components in your Panels, like this label: yep, this is from a component proper, or
even another panel: Contents of another panel. .
You can nest panels any deep you want:

  • test 1.1
  • test 1.2
    • test 2.1
    • test 2.2
    • test 2.3
      • test 3.1
    • test 2.4
  • test 1.3

Behind the Scenes

Example HTML

<span wicket:id="panel">panel contents come here</span>

Example Code

    public PanelPage()
    {
        add(new MyPanel("panel"));
    }

Further examples & and comments/explanations may be available in the source code.