Hi,

I have some queries that might take some times (around 10-20 seconds)
so before the call back in javascript, I show a progress bar, once the
callback function gets called, I woudl hide it.

.
document.getElementById("progresbar").style.display       = '';
Pyramid.index.GetSearchResult(searchterm,getResultListing);
...

function getResultListing(res)
{
document.getElementById("progresbar").style.display       = 'none';
...
}

the progressbars shows fine for the first 2-3 seconds, and then the
browser is locked. I can't enter text in anytextbox nor do any other
thigns and what's worst, is that the dynamic progress bar image stopped
moving as well. 

What am I doing wrong? 

Thanks


--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"Ajax.NET Professional" group.

To post to this group, send email to [email protected]
To unsubscribe from this group, send email to [EMAIL PROTECTED]

For more options, visit this group at http://groups.google.com/group/ajaxpro

The latest downloads of Ajax.NET Professional can be found at 
http://www.ajaxpro.info
-~----------~----~----~----~------~----~------~--~---

Reply via email to