How do you handle unwanted chars in strings in your JSON app
How do you handle unwanted chars in strings in your JSON app
Can I get some ideas on how to hande citation marks etc in your json applications.
Today I'm doing a URLEncode.encode(string) on every single value in the JSON object and then I'm using unescape() in javascript to unmask the chars again. But this works not very well with Ext's template/view model.
In Templates, we use the HTML 2.0 & 3.2 Standard Entity references such as
ü
that works like a charm :wink:
So you are sending in HTML entities for strange characters in your JSON object to the template. Are you using the same approach if the template generates a form?