Hello,
I'm trying to add a "onchange" attribute to an "input" tag.
The onchange attribute contains javascript code with apostrophes (').
These apostrophes are encoded (') in the resulting html.

Java code
...
new AttributeModifier("onchange", new
Model<String>("document.getElementById('navbar').classList.toggle('cond
ensedNav');")
...

Resulting html
...
onchange="document.getElementById(&#039;navbar&#039;).classList.toggle(
&#039;condensedNav&#039;);"
...

How can I avoid it?

Regards

Alberto

---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
For additional commands, e-mail: users-h...@wicket.apache.org

Reply via email to