I see different behaviour when using html input tag vs spring form tab library with Jquery tabs plug in
This works : showing currectly '€' in the text field
<input type="text" value="${requestattr.name}" readonly="readonly"/>
This does not work : shows ascii code € in the text field
<form:input maxlength="40" path="name" readonly="true"/>
Can anyone help what is causing this wierd behaviour?
Try to use the spring character encoding filter. In order to do this, add this into the web.xml file
Hope this helps.