Derrell Lipman wrote:
>
> On 7/5/07, Sergei Kolomiets <[EMAIL PROTECTED]> wrote:
>>
>> Hi!
>>
>> After migrating from 0.6.6 version to 0.7 I found, that synchronous
>> requests
>> don't work in IE 6.
>> Code line, placed after req.send() executes before than event handler
>> "completed" executed.
>>
>> How I need to execute synchronous requests?
>
> Please post an example the demonstrates the problem. Sync requests
> should work just fine. AFAIK, there's been no significant change in
> that code in a long time.
>
> Derrelll
>
> -------------------------------------------------------------------------
> This SF.net email is sponsored by DB2 Express
> Download DB2 Express C - the FREE version of DB2 express and take
> control of your XML. No limits. Just data. Click to get it now.
> http://sourceforge.net/powerbar/db2/
> _______________________________________________
> qooxdoo-devel mailing list
> [email protected]
> https://lists.sourceforge.net/lists/listinfo/qooxdoo-devel
>
>
You can use your Transport_1.html example.
I have added calling of info():
...
req.addEventListener("completed", function(e)
{
...
area.setValue(e.getData().getContent());
this.info("completed");
});
...
var result = req.send();
this.info("end");
};
};
});
</script>
When I use sync request, I have log:
018312 INFO: qx.ui.form.Button[179]: end
018359 INFO: qx.io.remote.Request[687]: completed
When I use async request, I have log:
020625 INFO: qx.ui.form.Button[179]: end
020656 INFO: qx.io.remote.Request[819]: completed
--
View this message in context:
http://www.nabble.com/qx.io.remote.Request-doesn%27t-work-in-synchronous-mode-properly-in-0.7-Qx.-tf4028864.html#a11445533
Sent from the qooxdoo-devel mailing list archive at Nabble.com.
-------------------------------------------------------------------------
This SF.net email is sponsored by DB2 Express
Download DB2 Express C - the FREE version of DB2 express and take
control of your XML. No limits. Just data. Click to get it now.
http://sourceforge.net/powerbar/db2/
_______________________________________________
qooxdoo-devel mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/qooxdoo-devel