| Rank: Advanced Member Groups: Member
 
 Joined: 11/16/2010
 Posts: 48
 
 | 
		    In my ASPX app I have the progress dialog control after at table
 <table>
 uploader etc
 </table>
 <p />
 <eo:AJAXUploaderProgressDialog ID="UploaderProgressDialog"
 runat="server" Height="150px" Width="200px">
 <ContentTemplate>
 <p>
  </p>
 <eo:ProgressBar ID="ProgressBar" runat="server" ControlSkinID="Windows_XP">
 </eo:ProgressBar>
 <p>
 <asp:PlaceHolder ID="ProgressTextPlaceHolder" runat="server">
 </asp:PlaceHolder>
 </p>
 <div style="text-align: center">
 <asp:Button ID="CancelButton" runat="server" Text="Cancel" />
 </div>
 </ContentTemplate>
 </eo:AJAXUploaderProgressDialog>
 <asp:label ID="lblTypeErrorMsg"  etc
 
 The dialog box appears superimposed on the table, and with a transparent background. How can I get it to appear after the table, or superimposed with a white background?
 | 
	| Rank: Administration Groups: Administration
 
 Joined: 5/27/2007
 Posts: 24,425
 
 | 
		    Hi, I am not exactly sure what you mean by "getting it to appear after the table". The dialog is a dialog and user can move it around on the screen. So there is no such thing as "before" or "after". Where you put the dialog in your page is usually irrelevant. To change the dialog's background, you would set the background color in one of the dialog's style property. See here for more details:http://doc.essentialobjects.com/library/1/dialog/dialog_style.aspx Thanks!
		 | 
	| Rank: Advanced Member Groups: Member
 
 Joined: 11/16/2010
 Posts: 48
 
 | 
		    Thanks for the quick reply - I hadn't realised it was implemented with the EO dialog control
		 |