Apache Wicket exposes attributes

Posted by Luke on Stack Overflow See other posts from Stack Overflow or by Luke
Published on 2010-12-26T23:50:38Z Indexed on 2010/12/26 23:53 UTC
Read the original article Hit count: 243

Filed under:
|
|

I just tried the Apache Wicket "Hello, world" application and I noticed that in the rendered HTML output, Wicket is exposing it's internal attributes.

This is what the rendered HTML looks like in the 'view source' of the browser:

<html>
<body>
    <span wicket:id="message" id="message">Hello World!</span>
</body>
</html>

How do I get rid of the wicket:id="message" attribute in the rendered HTML output?

© Stack Overflow or respective owner

Related posts about apache

Related posts about wicket