I am using the RadEditor for ASP.NET AJAX within an Ajax Toolkit Modal Popup Extender, which is within an UpdatePanel - basically:
<asp:UpdatePanel ID="UpdatePanel1" runat="server">
<ContentTemplate>
<div style="display: none" runat="server">
<telerik:RadEditor ID="reText" runat="server" Skin="Telerik">
</telerik:RadEditor>
</div>
<cc1:ModalPopupExtender ID="mpeText" runat="server" >
</cc1:ModalPopupExtender>
<ContentTemplate>
</asp:UpdatePanel>
The editor works flawlessly, except when I want to select or edit an image. Initially, when I clicked the Image Manager button the Image Manager displayed behind the modal poup containing the RadEditor. I fixed this with some information I found in another post by adding the following style tag to my page:
.radwindow.radwindow_Telerik.normalwindow.transparentwindow
{
z-index:13000 !important;
}
However, if I click on an image and select SetImageProperties, then click the Call Image Manager Button (...), the Image Manager Dialog box appears behind the Set Image Properties Dialog.
Is there a way to fix this. Thank you.
<asp:UpdatePanel ID="UpdatePanel1" runat="server">
<ContentTemplate>
<div style="display: none" runat="server">
<telerik:RadEditor ID="reText" runat="server" Skin="Telerik">
</telerik:RadEditor>
</div>
<cc1:ModalPopupExtender ID="mpeText" runat="server" >
</cc1:ModalPopupExtender>
<ContentTemplate>
</asp:UpdatePanel>
The editor works flawlessly, except when I want to select or edit an image. Initially, when I clicked the Image Manager button the Image Manager displayed behind the modal poup containing the RadEditor. I fixed this with some information I found in another post by adding the following style tag to my page:
.radwindow.radwindow_Telerik.normalwindow.transparentwindow
{
z-index:13000 !important;
}
However, if I click on an image and select SetImageProperties, then click the Call Image Manager Button (...), the Image Manager Dialog box appears behind the Set Image Properties Dialog.
Is there a way to fix this. Thank you.