New to Telerik UI for ASP.NET AJAX? Download free 30-day trial

Integrate RadSpell control with RadEditor as built-in Spelling tool.

How-to

Integrate RadSpell control with RadEditor as built-in Spelling tool.

Solution

The following example demonstrates how to use a hidden RadSpell control integrated with the RadEditor one and add a custom tool that triggers the RadSpell instead the built-in spell checker.

<telerik:RadEditor runat="server" ID="RadEditor1">
    <Tools>
        <telerik:EditorToolGroup>
            <telerik:EditorTool Name="SpellCheck" />
        </telerik:EditorToolGroup>
    </Tools>
</telerik:RadEditor>

<telerik:RadSpell ID="RadSpell1" runat="server" ControlToCheck="RadEditor1" Style="display: none;"></telerik:RadSpell>

<script type="text/javascript">
    Telerik.Web.UI.Editor.CommandList["SpellCheck"] = function (commandName, editor, args) {
        $find("<%= RadSpell1.ClientID %>").startSpellCheck();
    };
</script>
In this article