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

404 with Custom Skin

4 Answers 84 Views
Editor
This is a migrated thread and some comments may be shown as answers.
Mark Griebling
Top achievements
Rank 1
Mark Griebling asked on 30 Apr 2008, 09:35 PM
Using Fiddler I see a 404 on a WebResource.axd request when using a custom skin.  This does not happen with embedded skins or using a non-embedded version of the standard skins. 

To recreate the problem.
1) Create a project with a page containing an editor.
2) Change the editor to use a non-embedded version of a standard skin.  I used WebBlue.
3) Verify using Fiddler.
4) Copy the skin to a new name, renaming CSS file and CSS classes.
5) Recheck using Fiddler.

Mark

4 Answers, 1 is accepted

Sort by
0
Ubong
Telerik team
answered on 06 May 2008, 02:35 PM

Hello Mark,

I followed your steps and was able to reproduce the error for just the ApplyClass dropdown by clicking on it using the Fiddler tool.
Could you send us a screenshot of your errors from Fiddler as well as some more details on the errors you get with custom skins?
If you could send us a sample running app reproducing this issue in a support ticket, it would really be most helpful.
Thanks for your understanding and looking forward to your reply.

Best Regards,
Ubong
the Telerik team

Instantly find answers to your questions at the new Telerik Support Center
0
Mark Griebling
Top achievements
Rank 1
answered on 06 May 2008, 03:31 PM
A bug report has been submitted.  It is ticket ID 136351.

Regards,
Mark
0
Ubong
Telerik team
answered on 07 May 2008, 10:21 AM

Hi Mark Griebling,

I looked at your app and you were missing a reference to the ContentAreaCssFile. Add this directly using the ContentAreaCssFile property and everything will be okay:

Custom.aspx:
...  
 
<head runat="server">  
    <title>Untitled Page</title> 
    <link href="../Skins/WebBlue2/Editor.WebBlue2.css" rel="stylesheet" type="text/css" /> 
</head> 
<body> 
    <form id="form1" runat="server">  
    <div> 
        <telerik:RadScriptManager ID="RadScriptManager1" runat="server">  
        </telerik:RadScriptManager> 
        <asp:Panel ID="pnlEditor" runat="server" CssClass="pnlEditor">  
            <telerik:RadEditor ID="edtrNotes" runat="server" EditModes="Design, Html" EnableEmbeddedSkins="False" 
                Skin="WebBlue2" ToolsFile="EditorTools.xml" 
                ContentAreaCssFile="../Skins/WebBlue2/EditorContentArea.css" 
                > 
                <Content>   
                  
                </Content> 
            </telerik:RadEditor> 
        </asp:Panel> 
        <content> 
</content> 
        </telerik:RadEditor> 
    </div> 
 
...  
... 
We are also updating our docs to reflect this and have updated your telerik points for pointing us to the omission.


Greetings,
Ubong
the Telerik team

Instantly find answers to your questions at the new Telerik Support Center
0
Mark Griebling
Top achievements
Rank 1
answered on 07 May 2008, 03:01 PM
That did the trick.  Thanks!
Tags
Editor
Asked by
Mark Griebling
Top achievements
Rank 1
Answers by
Ubong
Telerik team
Mark Griebling
Top achievements
Rank 1
Share this question
or