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

Telerik RADEditor Failing to render with IIS Url Rewrite

3 Answers 68 Views
Editor
This is a migrated thread and some comments may be shown as answers.
Alaaeddin
Top achievements
Rank 1
Alaaeddin asked on 05 Jan 2013, 07:57 AM

am using IIS Url Rewrite to create friendly url, i have noticed after enabling it the radeditor fail to render as in the image :http://i.stack.imgur.com/TZo2O.png

The rule am using look like this in web.config :

<rewrite>
        <rules>
            <rule name="RewriteUserFriendlyURL1" stopProcessing="true">
                <match url="^([^/]+)/?$" />
                <conditions>
                    <add input="{REQUEST_FILENAME}" matchType="IsFile" negate="true" />
                    <add input="{REQUEST_FILENAME}" matchType="IsDirectory" negate="true" />
                </conditions>
                <action type="Rewrite" url="Default.aspx?name={R:1}" />
            </rule>
        </rules>
    </rewrite>


I have changed DialogHandler from aspx to axd and also changed the path for it to look like below and also cant render properly

<add path="~/Telerik.Web.UI.DialogHandler.axd" type="Telerik.Web.UI.DialogHandler" verb="*" validate="false" />

3 Answers, 1 is accepted

Sort by
0
Rumen
Telerik team
answered on 07 Jan 2013, 03:40 PM
Hi,

Have you set the DialogHandlerUrl property to point to Telerik.Web.UI.DialogHandler.axd?

You can see this KB article: http://www.telerik.com/support/kb/aspnet-ajax/editor/error-web-config-registration-missing-the-telerik-dialogs-require-a-httphandler-registration-in-the-web-config-file.aspx.

All the best,
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.
0
Alaaeddin
Top achievements
Rank 1
answered on 07 Jan 2013, 11:11 PM
Yes I did set the DialogHandlerUrl property to point to Telerik.Web.UI.DialogHandler.axd
and still failing to render properly
0
Rumen
Telerik team
answered on 09 Jan 2013, 02:08 PM
Hi,

I examined the provided screenshot once again and noticed that the problem is that RadEditor does not load its CSS classes for its toolbar but not with the RadEditor's dialogs. That is why the DialogHandlerUrl property will not fix the issue.

Try to register the skin by enabling the CDN stylesheet or manually as shown in this article: Registering an external skin of RadEditor.

Best regards,
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
Alaaeddin
Top achievements
Rank 1
Answers by
Rumen
Telerik team
Alaaeddin
Top achievements
Rank 1
Share this question
or