There is a typo in the faq -- which hit one our Wicket test driver
developers.  The last FAQ "How can I hide markup and/or components?" should
have

   <tr wicket:id="wicket-hideme">

instead of

   <tr id="wicket-hideme">

Also, there are CDATA tags wrapping each of the code examples.

Cheers, Scott


<![CDATA[
WebMarkupContainer hideme = new WebMarkupContainer("hideme");
hideme.setVisible(false);

<html>
<body>
        <table>
                <tr id = "wicket-hideme">
                        <td>this row will be hidden</td>
                </tr>
                <tr>
                        <td>this row will not be hidden</td>
                </tr>
        </table>
</body>
</html>
]]>



--
Scott Swank
reformed mathematician
-------------------------------------------------------------------------
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