Tagged Questions

3
votes
5answers
13k views

Dojo “loading”-message

I'm new to Dojo, so I need a little help. Some of my links takes a while (when the user clicks, it takes several seconds before the page starts loading), and I'd like to add a "loading"-message. I ...
1
vote
1answer
236 views

Popup After Submit. Display a loading window or please wait

Here's my script: <form action='' method='' onsubmit='refreshpage();'> <input name='refresh' type="image" SRC="images/Next-Page-Button.gif" HEIGHT="60" WIDTH="173" BORDER="0" ...
0
votes
4answers
136 views

How to invoke a “Please Wait” window only if ajax takes more than X milliseconds to respond?

I'm doing an AJAX call (regular JS) and, if it takes more than, say, 500 milliseconds, I'd like to put up my "Please Wait" box. Normally, if I want to put up the PW box immediately, I'd do: // show ...