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
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
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
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
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
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",
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
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
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
-