Details
-
Improvement
-
Status: Resolved
-
Major
-
Resolution: Fixed
-
1.3.0-beta1
-
None
Description
The main ideea is to make it possible to add a or id to tab-row container - this way I would be able to treat differently outer tabbedPane comparing to inner tabbedPanel. There are many ways to achieve this:
1. My first thought was to add modify the components markup this way:
<div wicket:id="tabsContainer" class="tab-row">
<ul>
<li wicket:id="tabs">
[[tab title]]
</li>
</ul>
</div>
[panel]
</wicket:panel>
2. Igor's idea: overridable method to add a css class to that
3. somehow dynamically providing markup for the tab-row
container or having a possibility to decorate it with you own markup...
Any approach is good. Important thing is to add a flexibility on manipulating tab-row container.
Thank you!