[qooxdoo-devel] CKEditor Adapter

2013-12-16 Thread csfahey
I have written a small adapter for CKEditor version 4.6.1 if anyone needs it. CKEditor.js -- View this message in context: http://qooxdoo.678.n2.nabble.com/CKEditor-Adapter-tp7585082.html Sent from the qooxdoo mailing list archive

Re: [qooxdoo-devel] errors in rpc callbacks

2013-12-16 Thread Christian Hagendorn
Hi Tobi, I have not a really good idea. But you can try to catch the error in the callback function, this should help to minimize the stacktrace: var rpc = myapp.RpcServer.getInstance(); var root = this.getRoot(); rpc.callAsync(function(cfg){ try { root.add(new myapp.Desktop(

[qooxdoo-devel] errors in rpc callbacks

2013-12-16 Thread Tobias Oetiker
Many of my GUIs need some configuration before they can be built. What I do in Application.js is this. var rpc = myapp.RpcServer.getInstance(); var root = this.getRoot(); rpc.callAsync(function(cfg){ root.add(new myapp.Desktop(cfg)); },'getConfig'); this works well, except when ther