Hi,
I am trying to create a custom skin for the Editor. I follow the instructions in http://www.telerik.com/help/aspnet-ajax/createcustomskin.html and http://www.telerik.com/help/aspnet-ajax/createnewskin.html. I set the EnableEmbeddedSkins property to false. As far as i see i manage to create it. The problem is when i try to open a dialog for example Flash Manager, it show an error "unable to find embedded skin with name 'Default2009'". How can i set EnableEmbeddedSkins to false for the controls inside the dialogs? I think they inherit the Skin from the Editro. So i copy also the controls that are used in the dialogs acording to this: http://www.telerik.com/community/forums/aspnet-ajax/editor/different-skin-for-file-managers-windows-etc.aspx and set the DialogsCssFile property. But, the error stay, no change.
Here is a simple code which i use:
Can you tell me what i am missing, is there a way to set EnableEmbeddedSkins to false for the controls inside the dialogs?
I am trying to create a custom skin for the Editor. I follow the instructions in http://www.telerik.com/help/aspnet-ajax/createcustomskin.html and http://www.telerik.com/help/aspnet-ajax/createnewskin.html. I set the EnableEmbeddedSkins property to false. As far as i see i manage to create it. The problem is when i try to open a dialog for example Flash Manager, it show an error "unable to find embedded skin with name 'Default2009'". How can i set EnableEmbeddedSkins to false for the controls inside the dialogs? I think they inherit the Skin from the Editro. So i copy also the controls that are used in the dialogs acording to this: http://www.telerik.com/community/forums/aspnet-ajax/editor/different-skin-for-file-managers-windows-etc.aspx and set the DialogsCssFile property. But, the error stay, no change.
Here is a simple code which i use:
| <%@ Page Language="C#" AutoEventWireup="true" CodeFile="Default.aspx.cs" Inherits="_Default" %> |
| <%@ Register TagPrefix="telerik" Namespace="Telerik.Web.UI" Assembly="Telerik.Web.UI" %> |
| <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> |
| <html xmlns="http://www.w3.org/1999/xhtml"> |
| <head id="Head1" runat="server"> |
| <title>Untitled Page</title> |
| <link href="Skins/Default2009/Window.Default2009.css" rel="stylesheet" type="text/css" /> |
| <link href="Skins/Default2009/Editor.Default2009.css" rel="stylesheet" type="text/css" /> |
| </head> |
| <body> |
| <form id="form1" runat="server"> |
| <telerik:RadScriptManager ID="RadScriptManager1" runat="server"> |
| </telerik:RadScriptManager> |
| <telerik:RadEditor ID="RadEditor1" |
| EnableEmbeddedSkins="false" |
| DialogsCssFile="Skins/Default2009/Widgets.Default2009.css" |
| Skin="Default2009" runat="server"> |
| <MediaManager DeletePaths="~/" UploadPaths="~/" ViewPaths="~/" /> |
| <TemplateManager DeletePaths="~/" UploadPaths="~/" ViewPaths="~/" /> |
| <DocumentManager DeletePaths="~/" UploadPaths="~/" ViewPaths="~/" /> |
| <FlashManager DeletePaths="~/" UploadPaths="~/" ViewPaths="~/" /> |
| <Content> |
| </Content> |
| <ImageManager DeletePaths="~/" UploadPaths="~/" ViewPaths="~/" /> |
| </telerik:RadEditor> |
| </form> |
| </body> |
| </html> |
Can you tell me what i am missing, is there a way to set EnableEmbeddedSkins to false for the controls inside the dialogs?