New issue 217 by ki...@kimmo.se: Encoding problem when posting forms on
utf-8 pages
http://code.google.com/p/iui/issues/detail?id=217
i18n characters will not be encoded correct.
I changed line 381 in iui.js to make it work.
From:
args.push(inputs[i].name + "=" + escape(inputs[i].value));
To:
args.push(inputs[i].name + "=" + encodeURIComponent(inputs[i].value));
escape() seems to be deprecated as well
--
You received this message because you are listed in the owner
or CC fields of this issue, or because you starred this issue.
You may adjust your issue notification preferences at:
http://code.google.com/hosting/settings
iUI 0.40-x versions use encodeURIComponent()
This magically solved my problem! thank you so much!
Comment #3 on issue 217 by msgilli...@gmail.com: Encoding problem when
posting forms on utf-8 pages
http://code.google.com/p/iui/issues/detail?id=217
I'll mark this as "Started" since iUI 0.40 isn't final yet...