7

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?

Zaksh
  • 953
  • 2
  • 12
  • 29

1 Answers1

9

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.

Tim Schmelter
  • 450,073
  • 74
  • 686
  • 939
  • 2
    @Zohaib: According to [this question](http://stackoverflow.com/q/1487977/284240), the default z-index of a ModalPopupExtender is 100001. So it should be sufficient to use 100002 ;) – Tim Schmelter Jan 10 '12 at 10:38