Link to home
Start Free TrialLog in
Avatar of Mahesh Yadav
Mahesh YadavFlag for India

asked on

Spell Check error in RadEditor.

Hi, I am using telerik controls(Q3 2010) in my webapplication. I used RadEditor with EditorDialogs, now my spell check function gives error given below:

Spell Check Handler Server Error:500
No dictionary loaded. Set the DictionaryPath property from the spell checker settings or copy the dictionaries to ~/App_Data/RadSpell/

my aspx code is:
<telerik:RadEditor ExternalDialogsPath="~/EditorDialogs/" ID="txtSolution" runat="server"
                                            Height="250px" Width="99%" SkinID="DefaultSetOfTools" Skin="Office2007" EditModes="Design, Preview"
                                            ToolbarMode="ShowOnFocus" OnClientLoad="OnEditorLoad">
                                            <Modules>
                                                <telerik:EditorModule Name="RadEditorStatistics" Visible="false" Enabled="true" />
                                                <telerik:EditorModule Name="RadEditorDomInspector" Visible="false" Enabled="true" />
                                                <telerik:EditorModule Name="RadEditorNodeInspector" Visible="false" Enabled="true" />
                                                <telerik:EditorModule Name="RadEditorHtmlInspector" Visible="false" Enabled="true" />
                                            </Modules>
                                            <SpellCheckSettings DictionaryPath="~/RadSpell" SpellCheckProvider="TelerikProvider"
                                                FragmentIgnoreOptions="All" WordIgnoreOptions="None" DictionaryLanguage="en-US.tdf">
                                            </SpellCheckSettings>
                                            <Content></Content>
                                        </telerik:RadEditor>

Application along with other folders also contains EditorDialog folder for all RadEditor ascx pages and RadSpell Folder for three tdf files.
SOLUTION
Avatar of abhitrig
abhitrig
Flag of United States of America image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
ASKER CERTIFIED SOLUTION
Avatar of Kumaraswamy R
Kumaraswamy R
Flag of India image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of Mahesh Yadav

ASKER

Thanks rkworlds,

But I had tried that also still giving the same error.