Is there some way to get a value from wicket message into an html attribute?
I need to get wicket:message key="nameQtip
into
<input type="text" id="firstName" info="Here_I_Want_The_Wicket_Message"/>
I'm using the info attribute to pass text to qTip.
You can achieve this easily with AttributeModifier
If you need this regularly, you can make own subclass from TextField. Be aware that while info is not supported attribute for input, HTML validators will complain about this...
Also you can do this more statically as:
where infoMessage is in property file.