开发者

Update progress position?

开发者 https://www.devze.com 2023-01-19 08:07 出处:网络
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 an

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 开发者_Python百科in CSS to show the update progress div on the top right of screen according to current scroll position ?


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.

0

精彩评论

暂无评论...
验证码 换一张
取 消