Description
When I have a page like so:
<div wicket:id="content" />
And two types of panels that could go in there, that should have different styling, I'm currently stuck using a pointless extra div:
<wicket:panel>
<div class="style1">
Content 1
</div>
</wicket:panel>
If wicket allows copying attributes on from the wicket:panel tag to the source tag of the panel; this would become a lot cleaner and neater:
<wicket:panel class="style1">
Content 1
</wicket:panel>
Attachments
Attachments
Issue Links
- is related to
-
WICKET-3812 xmlns:wicket="http://wicket.apache.org" rendered for each panel
- Resolved