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

Media element display over the *Manager dialog

1 Answer 31 Views
Editor
This is a migrated thread and some comments may be shown as answers.
lan luo
Top achievements
Rank 1
lan luo asked on 19 Nov 2010, 04:42 PM
Hi Telerik,

I found a bug in the *Manager dialog. Adding a media element in the editor design mode, then you open the *Manager (FileManager, FlashManager, MediaManager and TemplateManager) dialog window, the media element you added will display over the *Manager dialog.

How to reproduce:

1. open the following link:
     http://demos.telerik.com/aspnet-ajax/editor/examples/xhtmlvalidatortrackchangesformatcodeblockdialogs/defaultcs.aspx
2. open MediaManager, choose PublicRelations -> RadNavigation.avi, insert it
3. open one of Managers ( FileManager, FlashManager, MediaManager or TemplateManager )

thanks in advance,

Lan


 

1 Answer, 1 is accepted

Sort by
0
Rumen
Telerik team
answered on 23 Nov 2010, 01:04 PM
Hello Lan,

This is a browser behavior. The HTML based dialogs of RadEditor are positioned below the Windowed flash and media objects, because the windowed objects have larger z-index.

If you don't like this behavior you can configure the editor to use the browser modal dialogs instead of RadWindow using the following code:

<script type="text/javascript">   
function OnClientLoad(editor)   
{   
    editor.set_useClassicDialogs(true);   
}   
</script>   
<telerik:RadEditor ID="RadEditor1" OnClientLoad="OnClientLoad"  runat="server"></telerik:RadEditor>    
 

You can find more information in this KB article: Using browser modal dialog instead of RadWindow.


Regards,
Rumen
the Telerik team
Browse the vast support resources we have to jumpstart your development with RadControls for ASP.NET AJAX. See how to integrate our AJAX controls seamlessly in SharePoint 2007/2010 visiting our common SharePoint portal.
Tags
Editor
Asked by
lan luo
Top achievements
Rank 1
Answers by
Rumen
Telerik team
Share this question
or