Re: How to modify markup?

2013-02-21 Thread Zilvinas Vilutis
I think that is what borders are for ( read here: https://cwiki.apache.org/WICKET/consistent-page-layout-using-borders.html ) Regards Žilvinas Vilutis On Wed, Feb 20, 2013 at 8:20 PM, Stefan Renz s.r...@efonds.com wrote: Hi, what would be the best way to modify the HTML output of a

How to modify markup?

2013-02-20 Thread Stefan Renz
Hi, what would be the best way to modify the HTML output of a component? Consider this: a wicket:id=...Text/a which is backed by a Link component. By adding a behavior (I would assume), I would like to modify this HTML to become sth like a ...span .../spanspanText/span/a Please note that I

Re: How to modify markup?

2013-02-20 Thread Andrea Del Bene
The first solution that comes in my mind is to overwrite method onComponentTagBody. Maybe this could work : add(new Link(helloMessage){ @Override protected void onComponentTagBody(MarkupStream markupStream, ComponentTag tag) { getResponse().write(span .../spanspan);