Is there any way to get an updateprogress to entirely cover an updatepanel ?

(Asp.net .net 4)

link|improve this question

68% accept rate
feedback

2 Answers

<asp:updateprogress associatedupdatepanelid="UpdatePanel3" 
    id="updateProgress" runat="server">
    <progresstemplate>
        <div id="progressBackgroundFilter"></div>
        <div id="processMessage"> Loading...<br /><br />
             <img alt="Loading" src="images/ajax-loader.gif" />
        </div>
    </progresstemplate>
</asp:updateprogress> 

#progressBackgroundFilter {
position:fixed; 
top:0px; 
bottom:0px; 
left:0px;
right:0px;
overflow:hidden; 
padding:0; 
margin:0; 
background-color:#000; 
filter:alpha(opacity=50); 
opacity:0.5; 
z-index:1000; 
}
#processMessage { 
position:fixed; 
top:30%; 
left:43%;
padding:10px; 
width:14%; 
z-index:1001; 
background-color:#fff;
border:solid 1px #000;
link|improve this answer
This code is useful if you want to entirely cover the page, but it doesn't solve the OP's specific problem. – Tod1d Feb 3 '11 at 17:40
feedback

I have been using the FlanAjaxControls to only overlay the UpdatePanel.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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