Hi,
 
i've come across a behaviour, that IMHO is wrong:
 
when i have a wicket label e.g:
 
HTML:
 
<div wicket:id="foo"> bla bla </div>
 
adn use it as new Label("foo", "bar") in dev, he puts out:
 
result: <div wicket:id="foo">bar</div>
 
wich is right; however if i do: 
getMarkupSettings().setStripWicketTags(true);
 
in the init he puts out:
 
result: <div>bar</div>
 
which is blowing up HTML-output for nothing - IMHO if the tags are empty
after the wicket:id has been stripped they should be removed completely.
 
Is this behavoir intention or a bug?
 
 

Reply via email to