Hi,

On the JSONInputParser class, under the parseItems method we have the
following code:

return s.split('},');

Is it possible to use native JS JSON parse? Something like:

try{
return JSON.parse(s);
}
catch (e)
{
return "Error wile parsing JSON data";
}

I've change the JS after compiling the app and it works fine.

Thanks



--
View this message in context: 
http://apache-flex-development.2333347.n4.nabble.com/FlexJS-JSONInputParser-parseItems-tp38479.html
Sent from the Apache Flex Development mailing list archive at Nabble.com.

Reply via email to