Re: [qooxdoo-devel] Umlaute in Post-Request

2007-03-16 Thread Andreas Junghans
Hi Tobias, Am 16.03.2007 um 15:55 schrieb Tobias Koller (GERMO GmbH): >> Well, I'm afraid this is not really a solution. encodeURIComponent is >> the way to go! > > I know. But escape() is a quick solution for my problems till > someone could give me another one ;) > Selfhtml says: "encodeURICo

Re: [qooxdoo-devel] Umlaute in Post-Request

2007-03-16 Thread Tobias Koller (GERMO GmbH)
MAIL PROTECTED] [mailto:[EMAIL PROTECTED] Im Auftrag von Andreas Junghans Gesendet: Freitag, 16. März 2007 15:36 An: qooxdoo Development Betreff: Re: [qooxdoo-devel] Umlaute in Post-Request Hi Tobias, Am 16.03.2007 um 14:03 schrieb Tobias Koller (GERMO GmbH): > When I use escape

Re: [qooxdoo-devel] Umlaute in Post-Request

2007-03-16 Thread Andreas Junghans
Hi Tobias, Am 16.03.2007 um 14:03 schrieb Tobias Koller (GERMO GmbH): > When I use escape() instead of encodeURIComponent or encodeURI then > it works! Well, I'm afraid this is not really a solution. encodeURIComponent is the way to go! The problem is that escape() only deals with 1-byte ch

Re: [qooxdoo-devel] Umlaute in Post-Request

2007-03-16 Thread Tobias Koller (GERMO GmbH)
When I use escape() instead of encodeURIComponent or encodeURI then it works! Von: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Im Auftrag von Farrakh Chowdhry Gesendet: Donnerstag, 15. März 2007 16:00 An: qooxdoo Development Betreff: Re: [qooxdoo-devel] Umlaute in Post-Request Looks like

Re: [qooxdoo-devel] Umlaute in Post-Request

2007-03-15 Thread Farrakh Chowdhry
Looks like its been url encoded but no url decoded. On 3/15/07, Tobias Koller (GERMO GmbH) <[EMAIL PROTECTED]> wrote: Hello, i need to send german „umlaute" via Post-Request to the server. This is my code: *var* retVal = ""; *var* params = encodeURIComponent("name")+"="+encodeURICom

[qooxdoo-devel] Umlaute in Post-Request

2007-03-15 Thread Tobias Koller (GERMO GmbH)
Hello, i need to send german "umlaute" via Post-Request to the server. This is my code: var retVal = ""; var params = encodeURIComponent("name")+"="+encodeURIComponent(name.getValue()); url = encodeURI("prog/save.php?type="+type); var r = new qx.io.remote.Request(url, "POST",

Re: [qooxdoo-devel] umlaute

2006-09-19 Thread Alex D.
It helped! Thank you. > Just save your file as UTF-8. Umlauts are supported by UTF-8, too. > Many of the more advanced editors like Ultraedit, PSPad, etc. can > configure the encoding. > > Cheers, > > Sebastian > > > > Alex D. schrieb: >> Hi folks, >> >> when using skeletons and generator.py it's

Re: [qooxdoo-devel] umlaute

2006-09-19 Thread Sebastian Werner
Just save your file as UTF-8. Umlauts are supported by UTF-8, too. Many of the more advanced editors like Ultraedit, PSPad, etc. can configure the encoding. Cheers, Sebastian Alex D. schrieb: > Hi folks, > > when using skeletons and generator.py it's not possible to use other > charset tha

[qooxdoo-devel] umlaute

2006-09-19 Thread Alex D.
Hi folks, when using skeletons and generator.py it's not possible to use other charset than utf-8. So smth like this: var l = new qx.ui.form.Label("ÜÄÖß") will cause compiler error. How can i use umlauts anyway? Best Regards, alex.d -