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

enable spell check in Radeditor

1 Answer 155 Views
Editor
This is a migrated thread and some comments may be shown as answers.
Senthil ramna
Top achievements
Rank 1
Senthil ramna asked on 08 Sep 2010, 02:20 PM
I am using radeditor in edit template of gridview

<telerik:RadEditor ID="txt_ft_comments" OnClientLoad="OnClientLoad" SpellCheckSettings-DictionaryPath="../App_Data/RadSpell/en-US.tdf" SpellCheckSettings-SpellCheckProvider="EditDistanceProvider"  SpellCheckSettings-DictionaryLanguage="en-US,English" SpellCheckSettings-WordIgnoreOptions="None" SpellCheckSettings-AllowAddCustom="true" runat="server" ImageManager-ViewPaths="~/images" Height="250px">                        
                    <Tools>  
                <telerik:EditorToolGroup
                    <telerik:EditorTool Name="Print" Visible="true" />
                    <telerik:EditorTool Name="SpellCheck" Visible="true" Enabled="true" />
                    <telerik:EditorTool Name="FindAndReplace" Visible="true" />
                    <telerik:EditorTool Name="SelectAll" Visible="true" />
                    <telerik:EditorTool Name="Cut" Visible="true" />
                    <telerik:EditorTool Name="Copy" Visible="true" />
                    <telerik:EditorTool Name="Paste" Visible="true" />
                    <telerik:EditorTool Name="Undo" Visible="true" />
                    <telerik:EditorTool Name="Redo" Visible="true" />
                </telerik:EditorToolGroup>
                <telerik:EditorToolGroup>
                    <telerik:EditorTool Name="Superscript" Visible="true" />
                    <telerik:EditorTool Name="Subscript" Visible="true" />
                    <telerik:EditorTool Name="InsertParagraph" Visible="true" />
                    <telerik:EditorTool Name="InsertGroupbox" Visible="true" />
                    <telerik:EditorTool Name="InsertHorizontalRule" Visible="true" />
                    <telerik:EditorTool Name="InsertDate" Visible="true" />
                    <telerik:EditorTool Name="InsertTime" Visible="true" />
                </telerik:EditorToolGroup>
                <telerik:EditorToolGroup>
                    <telerik:EditorTool Name="StyleBuilder" Visible="true" />
                    <telerik:EditorTool Name="FontName" Visible="true" />
                    <telerik:EditorTool Name="FontSize" Visible="true" /> 
                </telerik:EditorToolGroup>
                <telerik:EditorToolGroup>
                    <telerik:EditorTool Name="Bold" Visible="true" />
                    <telerik:EditorTool Name="Italic" Visible="true" />
                    <telerik:EditorTool Name="Underline" Visible="true" />
                    <telerik:EditorTool Name="StrikeThrough" Visible="true" />
                    <telerik:EditorTool Name="ImageManager" Visible="true" />
                </telerik:EditorToolGroup>
                <telerik:EditorToolGroup>  
                    <telerik:EditorTool Name="JustifyLeft" Visible="true" />
                    <telerik:EditorTool Name="JustifyCenter" Visible="true" />
                    <telerik:EditorTool Name="JustifyRight" Visible="true" />
                    <telerik:EditorTool Name="JustifyNone" Visible="true" />
                    <telerik:EditorTool Name="Indent" Visible="true" />
                    <telerik:EditorTool Name="Outdent" Visible="true" />
                    <telerik:EditorTool Name="InsertOrderedList" Visible="true" />
                    <telerik:EditorTool Name="XhtmlValidator" Visible="true" /> 
                </telerik:EditorToolGroup>
                <telerik:EditorToolGroup>
                    <telerik:EditorTool Name="ForeColor" Visible="true" />
                    <telerik:EditorTool Name="BackColor" Visible="true" />
                    <telerik:EditorTool Name="InsertSymbol" Visible="true" />
                    <telerik:EditorTool Name="InsertTable" Visible="true" />
                    <telerik:EditorTool Name="InsertFormElement" Visible="true" />
                    <telerik:EditorTool Name="ConvertToLower" Visible="true" />
                    <telerik:EditorTool Name="ConvertToUpper" Visible="true" />
                    <telerik:EditorTool Name="Zoom" Visible="true" />
                </telerik:EditorToolGroup>
           </Tools>
        </telerik:RadEditor>

i have added the concerned handlers in web.Config
so when i try to use spell check it gives a dialog box saying that Command Spell check has not been implemented.
any inputs on this is appreciated.......

1 Answer, 1 is accepted

Sort by
0
Accepted
Rumen Jekov
Top achievements
Rank 1
answered on 08 Sep 2010, 09:04 PM
Hi

The name of the spellchecker buttons that you should use is AjaxSpellCheck, e.g.

<telerik:EditorTool Name="AjaxSpellCheck" Visible="true" Enabled="true" />

Best regards,
Rumen
Tags
Editor
Asked by
Senthil ramna
Top achievements
Rank 1
Answers by
Rumen Jekov
Top achievements
Rank 1
Share this question
or