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

radeditor design problem

3 Answers 49 Views
General Discussions
This is a migrated thread and some comments may be shown as answers.
brijesh
Top achievements
Rank 1
brijesh asked on 15 Sep 2014, 07:23 AM
sometime a radeditor in one of my asp.net webform loading problem.

Here i attach screenshot for that.

3 Answers, 1 is accepted

Sort by
0
Slav
Telerik team
answered on 17 Sep 2014, 04:25 PM
Hi,

It appears that the styles of the RadEditor are not loaded on the page. If you are using IE9 or an earlier version of this browser, this could be a result of reaching the 31 style sheets per page limitation that is usual for these versions of IE. You can resolve this issue by placing a RadStyleSheetManager on the page, because it combines the requests for the style sheets in a single one.

It is also possible that the HttpHandler that loads the styles (Telerik.Web.UI.WebResource.axd) fails for some reason, for example if you have a URL rewrite tool that modifies the requests for this HttpHandler. You can check this in the Network tab of the dev toolbar in your browser.

Regards,
Slav
Telerik
 

Check out the Telerik Platform - the only platform that combines a rich set of UI tools with powerful cloud services to develop web, hybrid and native mobile apps.

 
0
brijesh
Top achievements
Rank 1
answered on 19 Sep 2014, 07:48 AM
i use below code in my web form


<TELERIK:RadEditor Skin="Telerik" OnClientCommandExecuting="spellCheck" StripFormattingOptions="NoneSupressCleanMessage, Span"
                                                            ID="FTBSendOutGoing" Visible="true" Enabled="true" EditModes="Design" Height="280px"
                                                            Width="98%" ToolsFile="~/App_Themes/RadEditorTools.xml" DialogHandlerUrl="Telerik.Web.UI.DialogHandler.axd"
                                                            SpellCheckSettings-AjaxUrl="Telerik.Web.UI.SpellCheckHandler.axd" runat="server"
                                                            SpellCheckSettings-SpellCheckProvider="PhoneticProvider">
                                                            <CssFiles>
                                                                <TELERIK:EditorCssFile Value="~/App_Themes/RadEditor.css" />
                                                            </CssFiles>
                                                            <FontNames>
                                                                <TELERIK:EditorFont Value="Lucida Sans Unicode" />
                                                                <TELERIK:EditorFont Value="Arial" />
                                                                <TELERIK:EditorFont Value="Courier New" />
                                                                <TELERIK:EditorFont Value="Garamond" />
                                                                <TELERIK:EditorFont Value="Georgia" />
                                                                <TELERIK:EditorFont Value="Ms Sans Serif" />
                                                                <TELERIK:EditorFont Value="Segoe UI" />
                                                                <TELERIK:EditorFont Value="Tahoma" />
                                                                <TELERIK:EditorFont Value="Times New Roman" />
                                                                <TELERIK:EditorFont Value="Verdana" />
                                                            </FontNames>
                                                        </TELERIK:RadEditor>


i also use below in web.config.

i use in <httpHandlers>

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

i also use in <handlers>
<add name="ChartImage_axd" verb="*" preCondition="integratedMode" path="ChartImage.axd" type="Telerik.Web.UI.ChartHttpHandler"/>



how and where can i implement RadStyleSheetManager  ??? can u give me an example ?
can u plz help me ....
0
Slav
Telerik team
answered on 23 Sep 2014, 04:24 PM
Hello,

Note that the Telerik.Web.UI.DialogHandler.axd and Telerik.Web.UI.SpellCheckHandler.axd HttpHandlers are usually registered in web.config as shown in step3 in the following help article: http://www.telerik.com/help/aspnet-ajax/moss-deploying-radcontrols.html. Configuring them from the properties of RadEditor is not necessary unless your scenario requires it.

The ChartImage.axd HttpHanlder is not related to RadEditor, it is used by the RadChart control.

As for RadStyleSheetManager, you just need to add an instance of the control on your page after the ScriptManager:
<asp:ScriptManager ID="ScriptManager" runat="server" />
<telerik:RadStyleSheetManager runat="server" ID="RadStyleSheetManager1" />
...
You can find more information about this control in the following help article: http://www.telerik.com/help/aspnet-ajax/stylesheetmanager.html

If you are still having difficulties after checking the information above, clarify which version of the Telerik controls you are currently using and in which browser you are viewing them. If possible open a support ticket and send a fully runnable sample that isolates the problem at hand so that I can inspect it locally and provide a more to the point answer.

Regards,
Slav
Telerik
 

Check out the Telerik Platform - the only platform that combines a rich set of UI tools with powerful cloud services to develop web, hybrid and native mobile apps.

 
Tags
General Discussions
Asked by
brijesh
Top achievements
Rank 1
Answers by
Slav
Telerik team
brijesh
Top achievements
Rank 1
Share this question
or