As you recall, I have this HTML sniplet:
<div id="wicket-contents">
<table id="wicket-width" border="0"
width="100%">
<tr>
<td>
<wicket:body/>
</td>
</tr>
</table>
</div>
and if my RoundCornerBorder's width is 100% I want to remove
the <table> tag but not its children. Well, actually, it turns out I
had my requirements wrong... I need to remove <table><tr><td> but leave
its children...
So I added extra calls to "markupStream.next()" to skip the
<tr><td> raw markup and that worked, but I ran into a problem with
onComponentTagBody(). It seems it digests <wicket:body/> *and* the
following </td></tr> after it, so I cannot skip rendering of
</td></tr>.
Personally, I consider this a bug. What do you think?
Gili
-------------------------------------------------------
SF email is sponsored by - The IT Product Guide
Read honest & candid reviews on hundreds of IT Products from real users.
Discover which products truly live up to the hype. Start reading now.
http://ads.osdn.com/?ad_id=6595&alloc_id=14396&op=click
_______________________________________________
Wicket-develop mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/wicket-develop