point 1 and 2 did not work
but point 3
I don't know if everybody can update the howtos on the tapestry wiki
but someone has to add a short comment like "when using foreing languages
ensure eclipse saves your documents using UTF-8 encoding."
Bless you!
Thanks
--
View this message in co
*1*.add this in your tml file.
http://www.w3.org/TR/html4/strict.dtd";>
*2*.in the AppModule.java, add
public static void contributeApplicationDefaults(
MappedConfiguration configuration) {
configuration.add("tapestry.supported-locales", "zh_CN");
...others...
}
of course you should ch
Thanks for the answer, finally I noticed that I was using a FileUpload
component, after changing the utf8encoding filter everything turned right.
But still if in my template a label or any text contains an extra character
tapestry will not render the page I will get "Invalid byte 2 of 4-byte
UTF
Hi Max,
We deal with especial characters like this:
- UTF8Filter on AppModule
- equals() and hashCode() for beans used on Select component.
Marcus