I have implemented the RadEditor with the spellchecker successfully into my webpage as described in the help … all works ok.
The problem is I don’t want all the buttons in the toolbar so I add a tools section (see below).
<Tools>
<telerik:EditorToolGroup>
<telerik:EditorTool Name="FontName" />
<telerik:EditorTool Name="FontSize" />
<telerik:EditorTool Name="ForeColor" />
<telerik:EditorTool Name="Bold" />
<telerik:EditorTool Name="SpellCheck" />
</telerik:EditorToolGroup>
</Tools>
When I do that I only get the buttons I want but the SpellCheck no longer works. I get a ‘The command SpellCheck is not implemented yet’ error. The icon is also missing for the spell check button.
What else do I need to do to get the spell check to work again?