Hi,
I'm trying to do an asynchronous request, but it doesn't work.

[CODE]
var req = new qx.io.remote.Request(url, "GET", "application/xml");
req.setAsynchronous(false);
req.addListener("completed", function(response){
                //...
}, this);
[/CODE]

Adding

[CODE]
if(req.isAsynchronous)
  alert("Error!");
[/CODE]

reveals that the property "asynchronous" is still set to true.
(All this code is in a seperate class, the method is called from the 
constructor.)

What am I doing wrong?

Best,

Michael


------------------------------------------------------------------------------
Register Now for Creativity and Technology (CaT), June 3rd, NYC. CaT
is a gathering of tech-side developers & brand creativity professionals. Meet
the minds behind Google Creative Lab, Visual Complexity, Processing, & 
iPhoneDevCamp asthey present alongside digital heavyweights like Barbarian
Group, R/GA, & Big Spaceship. http://www.creativitycat.com 
_______________________________________________
qooxdoo-devel mailing list
qooxdoo-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/qooxdoo-devel

Reply via email to