Ok, next problem... I have this markup RoundCornerBorder.html:

------------------------<html xmlns:wicket>
  <body>
    <wicket:region name="border">
      <div class="ContainerTop">
        <div class="ContainerRight">
          <div class="ContainerBottom">
            <div class="ContainerLeft">
              <div class="ContainerTopLeft">
                <div class="ContainerTopRight">
                  <div class="ContainerBottomRight">
                    <div class="ContainerBottomLeft">
                      <div class="ContainerContents">
                        <table id="wicket-width" border="0"
width="100%">
                          <tr>
                            <td>
                              <wicket:region name="body"/>
                            </td>
                          </tr>
                        </table>
                      </div>
                    </div>
                  </div>
                </div>
              </div>
            </div>
          </div>
        </div>
      </div>
    </wicket:region>
  </body>
</html>
------------------------

        The problem is that Wicket complains "no such component width".
It is correct. I am just not sure what Wicket component I can use that
will act as a no-op and will output out the same body as it already
has. Any ideas? A "Label" replaces its body with a value set on the
Java end. I simply want a placeholder for "width" so I can remove the
tag if I choose to or leave it in place otherwise.

Gili



-------------------------------------------------------
The SF.Net email is sponsored by: Beat the post-holiday blues
Get a FREE limited edition SourceForge.net t-shirt from ThinkGeek.
It's fun and FREE -- well, almost....http://www.thinkgeek.com/sfshirt
_______________________________________________
Wicket-develop mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/wicket-develop

Reply via email to