-
4 May 2009 6:43 AM #11
Thanks for this thread - I was having the same problem and it let me to json2.js (http://www.json.org/js.html). I'm now using that instead of Ext.decode and the problem with invalid chars is solved.
-
10 Sep 2009 2:51 AM #12
Same here, thanks for this thread. I was having problems with this:
Get an unterminate string error, after using the json2 library's encode all is fineCode:var test = Ext.util.JSON.decode('{"name":"james\nwright"}');
James.Code:var test = JSON.parse('{"name":"james\nwright"}');


Reply With Quote