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=DEVDEV
_______________________________________________
Wicket-user mailing list
Wicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user

Reply via email to