I know there are several ways to do this, but I'm looking for the best way (I'm new to Wicket).
In the HTML code below, I've marked 2 areas where I need to replace some dummy text. The text in question is the {APP_TITLE} and {PAGE_TITLE}. I just want to replace them with simple Strings.
QUESTION
In the first <div>, what is the best way to replace those values without loosing the contents within the DIV and the attributes that currently define the div (and whatever attributes are added in the future)?
<html lang="en">
<head>
<!-- Replace here -->
<title>{APP_TITLE} - {PAGE_TITLE}</title>
</head>
<body>
<!-- Replace here -->
<div class="corpAppTemplate" corp:app="{APP_TITLE}" corp:title="{PAGE_TITLE}">
<ul class="corpAppMenu" wicket:id="MenuList">
</ul>
<span wicket:id="UserID">UserID</span>
<wicket:child/>
</div>
</body>
</html>
AttributeModifier? – biziclop Oct 27 '11 at 23:43