I am writing a simple dojo based application in which I show some 'in-progress' messages and spinners on UI (jsp) with setTimeout(clearMessage()) methods to show the message for sometime.
On Firefox, for the time, the xhrGet call goes to the server and returns, this message gets shown to the user that the operation is in progress. Once the operation responds with status, the message gets updated as "Operation done successfully".
But On IE, I see that once the xhrGet call is sent, the IE UI freezes till the response comes back from the server. As a result of this behavior, my 'In-Progress' messages are not coming up on IE at all.
I also read some comments that some browsers could freeze this way for synch calls at Ajax call freezes UI in internet explorer but works fine in firefox. Is there a way, where I could get my 'In-Progress' messages displayed on IE as well, while retaining the synch:true attaribute of xhrGet?
Any help here is appreciated?
Thanks in advance.