frederic schrieb:
> Hi,
> I've solved my pb but now I have an error with my script when executing
> qx.io.Json line 476 :
>
> ../..
>       if (qx.Settings.getValueOfClass("qx.io.Json", "enableDebug")) {     
> <==== line 476
>         qx.log.Logger.getClassLogger(qx.io.Json).debug("JSON response: " +
> text);
>       }
> ../..
>
> 012568 ERROR: qx.io.remote.XmlHttpTransport[301]: Could not execute json:
> [{"result":true,"id":1}]: TypeError - qx.Settings has no properties
>
> any idea ?
>   

Yes this code still uses the old style of settings. Change the line to:

if (qx.core.Setting.get("qx.jsonDebugging")) {
...
}

It's fixed in svn


Best Fabian

-------------------------------------------------------------------------
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT & business topics through brief surveys-and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
_______________________________________________
qooxdoo-devel mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/qooxdoo-devel

Reply via email to