This is a migrated thread and some comments may be shown as answers.

Dialogs Popping up Behind Other Dialogs

3 Answers 105 Views
Editor
This is a migrated thread and some comments may be shown as answers.
rjmolnar
Top achievements
Rank 1
rjmolnar asked on 01 Oct 2008, 04:27 PM
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.

3 Answers, 1 is accepted

Sort by
0
Rumen
Telerik team
answered on 02 Oct 2008, 07:42 AM
Hi Russell,

I was able to fix this problem by setting the following classes:

    <style>
    .radwindow.radwindow_Telerik.normalwindow.transparentwindow
    {
         z-index:13000 !important;
    }
    .radwindow.radwindow_Telerik.normalwindow.transparentwindow
    {
        z-index:13001 !important;
    }
    </style>


Best regards,
Rumen
the Telerik team

Check out Telerik Trainer, the state of the art learning tool for Telerik products.
0
rjmolnar
Top achievements
Rank 1
answered on 09 Oct 2008, 05:22 PM
Rumen,
Thanks for the speedy reply.  I added the style classes to my page, but it did not seem to fix the issue.  If you would like, I could send you the source for a closer look.  Thank you.
0
Rumen
Telerik team
answered on 10 Oct 2008, 07:46 AM
Hi Russell,

Yes, it will be best if you could send a sample working project through the attachment functionality of the support ticketing system under your Client.net account.

Best regards,
Rumen
the Telerik team

Check out Telerik Trainer, the state of the art learning tool for Telerik products.
Tags
Editor
Asked by
rjmolnar
Top achievements
Rank 1
Answers by
Rumen
Telerik team
rjmolnar
Top achievements
Rank 1
Share this question
or