[Sorry, posted wrong page in first attempt, now edited to include correct code]
Hi,
Code example below. This only seems to happen if you use the dialog control on one page, and then use ContentUrl property to point to another page. Use any suitable background.jpg file of your own to test. Switch the Dialog.ShadowDepth to anything above "0" and the colorpicker seems to display as completley transparent, showing the page behind. The spell checker seems to have the same problem. Im using build 6.0.86.2
UrlDialog_Base.aspx:
Code: HTML/ASPX
<body style="background-image: url(background.jpg); background-repeat:repeat">
<form id="form1" runat="server">
<div>
<eo:Dialog ShowButton="Show" ContentUrl="/UrlDialog_Popup.aspx" ID="AdminEditorDialog" runat="server" Height="530px" Width="642px" AllowResize="False" ShadowColor="LightGray" ShadowDepth="3" >
<ContentTemplate>
</ContentTemplate>
</eo:Dialog>
<asp:Button runat="server" ID="Show" Text="Show" />
</div>
</form>
</body>
UrlDialog_Popup.aspx
Code: HTML/ASPX
<body>
<form id="form1" runat="server">
<div>
<eo:ColorPicker ID="ColorPicker1" runat="server" ColorModel="HSB" ControlSkinID="None">
</eo:ColorPicker>
<eo:Editor ID="AdminContentEditor" runat="server" ColorPickerID="ColorPicker1" SpellCheckerID="SpellChecker1">
</eo:Editor>
<asp:Button ID="SubmitContentButton" runat="server" Text="OK" UseSubmitBehavior="false" OnClientClick="saveContent()" />
<asp:Button ID="CancelButton" runat="server" Text="Cancel" UseSubmitBehavior="false" />
<eo:SpellCheckerDialog ID="SpellCheckerDialog1" runat="server" AllowResize="True" Height="200px" ShadowColor="LightGray" ShadowDepth="0" Width="300px">
</eo:SpellCheckerDialog>
<eo:SpellChecker ID="SpellChecker1" runat="server" DialogID="SpellCheckerDialog1" Language="en-GB">
</eo:SpellChecker>
</div>
</form>
</body>