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

[Solved] Rad Editor Spell check

1 Answer 98 Views
Editor
This is a migrated thread and some comments may be shown as answers.
Rahul
Top achievements
Rank 1
Rahul asked on 29 May 2009, 07:43 AM
Hello

i want to AJAX spell check functionality in  my application

i done this code
<telerik:RadEditor ID="RadEditor1" runat="server" EditModes="Design"
                                Skin="Office2007"  Height="200px" Width="460px">
                              
                                <Tools>
                                    <telerik:EditorToolGroup>
                                        <telerik:EditorTool Enabled="true" Name="AjaxSpellCheck"  ShowIcon="true" />
                                        <telerik:EditorTool Enabled="true" Name="FindAndReplace" ShowIcon="true" />
                                        <telerik:EditorTool Enabled="true" Name="Undo" ShowIcon="true" />
                                        <telerik:EditorTool Enabled="true" Name="Redo" ShowIcon="true" />
                                        <telerik:EditorTool Enabled="true" Name="Cut" ShowIcon="true" />
                                        <telerik:EditorTool Enabled="true" Name="Copy" ShowIcon="true" />
                                        <telerik:EditorTool Enabled="true" Name="Paste" ShowIcon="true" />
                                    </telerik:EditorToolGroup>
                                    <telerik:EditorToolGroup>
                                        <telerik:EditorTool Enabled="true" Name="Bold" ShowIcon="true" />
                                        <telerik:EditorTool Enabled="true" Name="Italic" ShowIcon="true" />
                                        <telerik:EditorTool Enabled="true" Name="Underline" ShowIcon="true" />
                                    </telerik:EditorToolGroup>
                                </Tools>
                                <Content></Content>
                            </telerik:RadEditor>

ON page load
 Protected Sub Page_Load(ByVal sender As Object, ByVal e As System.EventArgs) Handles Me.Load
        If Not Page.IsPostBack Then
            RadEditor1.Languages.Add(New SpellCheckerLanguage("en-US", "English"))
        End If
    End Sub


And in web.confige file

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

But it genrates error like thisss  : Spell Check Server Error 500


shryan reply me fast


1 Answer, 1 is accepted

Sort by
0
Svetlina Anati
Telerik team
answered on 30 May 2009, 01:44 PM
Hello rahul,

Please, make sure that you have copied the RadSpell folder from the installation package to the App_data folder of your application. Note, also, that it is not needed to add English language to the SpellCheck languages since this is the default setting.

You can find a detailed help article about enabling the SpellCheck for RadEditor below:

http://www.telerik.com/help/aspnet-ajax/enablespellcheck.html

Kind regards,
Svetlina
the Telerik team

Instantly find answers to your questions on the new Telerik Support Portal.
Check out the tips for optimizing your support resource searches.
Tags
Editor
Asked by
Rahul
Top achievements
Rank 1
Answers by
Svetlina Anati
Telerik team
Share this question
or