On Sun, 09 Jan 2005 12:53:34 -0500, Gili <[EMAIL PROTECTED]> wrote: > > You sent me a Java file that shows how to skip over a Wicket > tag -- that I understand. My question is: if the tag gets kept, I what > Wicket component does it represent? Are you basically saying I should > add *any* type of Wicket tag and then at render time just pass it > through (no-op) based upon its name?
Isn't HtmlContainer what you are looking (except the remove tag part). In combination with the handleComponentTag() which is part of the source I sent to you, it could do. > > What I'm really looking for is a no-op Wicket component. This > is related to the following preexisting components: > > - <wicket:region> --> We modify its body but keep the tag > - <span id="myLabel"> --> We replace the body of the <span> tag with > the model of a Label > HtmlContainer is basically a no-op as long as don't add a component to the container. The border's body isn't a component in that context. Juergen ------------------------------------------------------- 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
