Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Want to show Update Progress control on top of ModalPopExtender

I have a content page with an Update Panel and a Update Progress controls. The Update Progress control is properly displayed when the page posts back. I have now added a Modal Popup Extender to the page. When a post back is fired from the Modal Popup Extender, the Update Progress control is displayed, but underneath the Modal Popup Extender.

How can I force the Update Progress control to appear on top?

like image 731
Zaksh Avatar asked Jan 10 '12 08:01

Zaksh


1 Answers

Increase the z-index of the UpdateProgress via CSS.

.progress
{
    z-index: 100002 !important;
}

Edit: Added !important rule, just to be on the safe side.

like image 199
Tim Schmelter Avatar answered Oct 02 '22 20:10

Tim Schmelter