Re: [qooxdoo-devel] Two Rpc Request block each other in FF

2008-01-11 Thread mg2
Hi Andreas, Thank you for the reply. HTTP pipelining was already disabled so this is not the cause of the problem (also pipelining.maxrequest =4). I also tried with mozilla (1.7.1) with the same result. Is the mechanism in general (execute and get reply for Rpc Requests while one other Rpc Req

[qooxdoo-devel] Two Rpc Request block each other in FF

2008-01-03 Thread mg2
Hi, I have a Application which needs fast communication to the Backend Server. So I made two qx.io.remote.Rpc() Objects: The 1. Rpc is used for sending Request Objects to the Server. The 2. Rpc is for receiving Reply Objects from the Server. Its a 'long Polling' strategy, the Rpc Request on the

Re: [qooxdoo-devel] treevirtual customdata howto

2007-07-12 Thread mg2
Thanks alot ! This works fine. Maybe a help for other users, this code is needed to get access to the "nodeGet" Method: qx.Class.include(qx.ui.treevirtual.TreeVirtual, qx.ui.treevirtual.MNode); -- View this message in context: http://www.nabble.com/treevirtual-customdata-howto-tf4065630.html#a

[qooxdoo-devel] treefullcontrol setUserData howto

2007-07-12 Thread mg2
Hi, I need to add some custom data to a branch in a treefullcontrol, using for example setUserData("id", 1); To which object can this Method be applied ? I'm completely got stuck .. please help. When creating a branch it only returns the id of the brach in the datamodel, which is an Integer. Re

[qooxdoo-devel] treevirtual customdata howto

2007-07-12 Thread mg2
Hi, I need to add some custom data to a branch in a treevirtual, using for example setUserData("id", 1); To which object can this Method be applied ? I'm completely got stuck .. please help. When creating a branch it only returns the id of the brach in the datamodel, which is an Integer. Regard