Re: Character Encoding of textfield

2014-05-14 Thread Thomas Grass (01SoftwareSolutions)
Hi Jens, i had the same problem yesterday! Your solution works for me also fine! :-) Thomas -- Thomas Grass, B.Sc. | 01SoftwareSolutions +49 (89) 41 41 41 03-0 off...@01softwaresolutions.eu | www.01softwaresolutions.eu Lichtenbergstraße 8 | D-85748 Garching b München Am 14.05.2014 um 07:50

Re: Character Encoding of textfield

2014-05-14 Thread CHRISTOPH WICK | i4innovation GmbH, Bonn
Hi Jens, hi list, I prefer to have such things in the code since they a) are absolutely essential and b) never change. Especially if you have a non-english app. I remember, we once corrupted the content of a large database, when an over-ambitious dev-op apprentice removed that property

Character Encoding of textfield

2014-05-13 Thread Dipl.-Ing. Jens Lünstedt
Hello, I have a strange problem. Today I noticed in one of my apps that all german characters like öäü are changed. So when I get the event that the text of that field is changed the text is already changed to something not readable. The last time some days ago I tested that in the app all was

Re: Character Encoding of textfield

2014-05-13 Thread Klaus Berkling
On May 13, 2014, at 8:49 AM, Dipl.-Ing. Jens Lünstedt jens.luenst...@ritz-schmidt.de wrote: I have a strange problem. Today I noticed in one of my apps that all german characters like öäü are changed. So when I get the event that the text of that field is changed the text is already

Re: Character Encoding of textfield

2014-05-13 Thread Klaus Berkling
On May 13, 2014, at 9:49 AM, Jens Lünstedt lu...@me.com wrote: the text is changed before it is send to the database. The changed characters are stored into the database and after the refresh of the table grid the changed character is shown. For example I have a textfield with an

Re: Character Encoding of textfield

2014-05-13 Thread Bastian Triller
er.extensions.ERXApplication.DefaultEncoding=UTF-8 also look in ERXApplication.setDefaultEncoding, if you want to know where/what switches can screw things up http://wiki.wocommunity.org/display/documentation/UTF-8+Encoding+Tips On 13 May 2014 17:49, Dipl.-Ing. Jens Lünstedt

Re: Character Encoding of textfield

2014-05-13 Thread CHRISTOPH WICK | i4innovation GmbH, Bonn
Hi Jens, does your wo-form set 'enctype=multipart/form-data' ? (AFAIK it is necessary, if you are using WOFileUpload) If so, try to use the following in your Application's constructor: public class Application extends ERXApplication { ... public Application() { ...

Re: Character Encoding of textfield

2014-05-13 Thread Dipl.-Ing. Jens Lünstedt
Good morning Christoph, I use er.extensions.ERXApplication.DefaultEncoding=UTF-8 er.extensions.ERXApplication.DefaultMessageEncoding=UTF-8 in the Properties file and all is fine now. For file upload I use the AjaxFileUpload. That looks nicer. Grüße nach Bonn Jens Am 14.05.2014 um 01:16