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?

link|improve this question

56% accept rate
feedback

1 Answer

up vote 1 down vote accepted

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.

link|improve this answer
Thanks mate that worked out but at z-index: 1000000; :) – Zohaib Jan 10 at 10:30
1  
@Zohaib: According to this question, the default z-index of a ModalPopupExtender is 100001. So it should be sufficient to use 100002 ;) – Tim Schmelter Jan 10 at 10:38
Thanks man, yea 100002 worked out. – Zohaib Jan 10 at 11:22
feedback

Your Answer

 
or
required, but never shown

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