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

WebResource.axd issues

1 Answer 97 Views
Editor
This is a migrated thread and some comments may be shown as answers.
Bill O'Neil
Top achievements
Rank 1
Bill O'Neil asked on 17 Dec 2012, 07:09 PM
I have a situation where radEditor is used through a reverse proxy.  I have all the css/js files loading through a CDN (to avoid issues w/ /WebResource.axd not loading properly as the pages are accessed via a proxy "subdirectory" and calls to the root (/) won't find our server.)

Issue is - the RadEditor seems to be making some WebResource.axd calls that break.  

These appear to be related to the contentAreaCssFile and the mozillaFlashOverlayImage.

Is there any way to STOP RadEditor from doing this?  Or provide it w/ a URL it can use to successfully generate the file?

1 Answer, 1 is accepted

Sort by
0
Rumen
Telerik team
answered on 19 Dec 2012, 12:48 PM
Hello,

You can specify your own CSS file via the ContentAreaCssFile property as shown in this live demo: Customize Content Area.

Using the OnClientInit event property of RadEditor, you can set the desired icon for the mozillaFlashOverlayImage:

function OnClientInit(editor) {
editor.set_mozillaFlashOverlayImage("NewImage.gif");
}

Greetings,
Rumen
the Telerik team
If you want to get updates on new releases, tips and tricks and sneak peeks at our product labs directly from the developers working on the RadControls for ASP.NET AJAX, subscribe to their blog feed now.
Tags
Editor
Asked by
Bill O'Neil
Top achievements
Rank 1
Answers by
Rumen
Telerik team
Share this question
or