Hi, I am using telerik controls(Q3 2010) in my webapplication in VS2008 3.5. 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"<BR> Height="250px" Width="99%" SkinID="DefaultSetOfTools" Skin="Office2007" EditModes="Design, Preview"<BR> ToolbarMode="ShowOnFocus" OnClientLoad="OnEditorLoad"><BR> <Modules><BR> <telerik:EditorModule Name="RadEditorStatistics" Visible="false" Enabled="true" /><BR> <telerik:EditorModule Name="RadEditorDomInspector" Visible="false" Enabled="true" /><BR> <telerik:EditorModule Name="RadEditorNodeInspector" Visible="false" Enabled="true" /><BR> <telerik:EditorModule Name="RadEditorHtmlInspector" Visible="false" Enabled="true" /><BR> </Modules><BR> <SpellCheckSettings DictionaryPath="~/RadSpell" SpellCheckProvider="TelerikProvider"<BR> FragmentIgnoreOptions="All" WordIgnoreOptions="None" DictionaryLanguage="en-US.tdf"><BR> </SpellCheckSettings><BR> <Content></Content><BR> </telerik:RadEditor><BR>Please advice if I am missing something.
