Wicket Remove
compref
Source code

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:


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.