I have been trying to set the background of the parent window when the modal window is not hidden and it appears the it does not work.
I created a modalBackground property in my stylesheet and referenced it in the webdialogwindow properties and nothing happens.
Also after closing the modal window and opening it back up the window is not modal anymore.
Nevermind. Problem resolved.
Can you turn the background off completely? I tried the transparent property, but that did not work.
I am also trying to figure out how to have a transparent background. I can do it using the asp.net ajax ModelPopupExtender but have yet to figure out the WebDialogWindow. If anyone knows how to do this please help.
I'm also having this problem. Anyone from Infragistics care to comment?
Hi,
To make background of modal shell transparent, you may use ModalBackgroundCssClass with 0 opacity. To make dialog by itself transparent, you may use transparent background for BodyContentAreaCssClass. To remove rounded border, you will need to customize other properties in RoundedCorners. Below is example for transparent modal shell and transparent body of dialog.
<style type="text/css">.modalBackCss{ filter:alpha(opacity:0); opacity:0;}.contentCss{ background:transparent;}</style>
<ig:WebDialogWindow ID="WebDialogWindow1" runat="server" Height="200px" Width="400px" Modal="True" ModalBackgroundCssClass="modalBackCss"> <RoundedCorners BodyContentAreaCssClass="contentCss" /></ig:WebDialogWindow>