The <span class="tab-panel"> markup is generated by the tab panel
component of wicket extensions automatically. I have no chance to change
this. The source code for the tabpanel component must be modified.

Stefan Lindner

-----------
It's up to you to use a <div> instead of a <span>. Just change your html

markup, replacing <span wicket:id="myid"  class="tab-panel"> with <div 
wicket:id="myid" class="tab-panel">

Pierre-Yves

Stefan Lindner a ?crit :
> The content of tabpanel is always surronded with a <span> tag, e.g.
> 
>       <span class="tab-panel">
>               <!-- The content of the panel -->
>       </span>
> 
> Now, if the panel contains a table it looks like
> 
> 
>       <span class="tab-panel">
>               <!-- The content of the panel -->
>               <table>
>                       ...
>               </table>
>       </span>
> 
> But a <span> tag must not contain a <table> tag. Wouldn't it be
better,
> do render the contents of a tab panel as <div>? That means
> 
> 
> 
>       <div class="tab-panel">
>               <!-- The content of the panel -->
>               <table>
>                       ...
>               </table>
>       </div>
> 
> Stefan Lindner
> 
>
------------------------------------------------------------------------
-
> Take Surveys. Earn Cash. Influence the Future of IT
> Join SourceForge.net's Techsay panel and you'll get the chance to
share your
> opinions on IT & business topics through brief surveys -- and earn
cash
>
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDE
V
> _______________________________________________
> Wicket-user mailing list
> Wicket-user@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/wicket-user
> 
> 
> 


-------------------------------------------------------------------------
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT & business topics through brief surveys -- and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
_______________________________________________
Wicket-user mailing list
Wicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user

Reply via email to