My update progress displays under the update panel. Is there a way to display it near the control which caused the async postback? I have a very long form so users might not scroll all the way down and see the progress at all.

Edit

I am using a table for my layout inside the update panel. The update progress is placed right after the table. It seems it always displays after the table.

Is there a way in CSS to show the update progress div on the top right of screen according to current scroll position ?

link|improve this question

feedback

1 Answer

up vote 3 down vote accepted

Just use

#div_update { position:fixed; top:0; right:0; }

It would place your at the top right corner of the screen, don't care about the current scroll.

link|improve this answer
Thanks, that worked like a charm. Nice name =) – Popo Oct 6 '10 at 9:21
You're welcome, that's almost my real name ^^ – MatTheCat Oct 6 '10 at 9:23
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.