Skip Navigation LinksHome / Community & Support / Developer Productivity Tools Forums / ASP.NET > Spell > Removing "The Spell Check is complete!" message
RadControls for ASP.NET are no longer supported (see this page for reference). In case you have inquiries about the Telerik ASP.NET AJAX controls, post them in the pertinent ASP.NET AJAX forums.

Answered Removing "The Spell Check is complete!" message

Feed from this thread
  • Gavin Palmer avatar

    Posted on Apr 26, 2010 (permalink)

    How can the message "The Spell Check is complete!" be removed when the spell check is finished?  Is there an option to disable this, or a way to override the function that renders this message?

    Many thanks.

  • Answer Rumen Rumen admin's avatar

    Posted on Apr 26, 2010 (permalink)

    Hi Gavin,

    To remove the "The Spell Check is complete!" message set the suppressCompleteMessage client property as shown below:

    <script type="text/javascript">
    function checkFinished (sender, args)
    {
       args.suppressCompleteMessage = true;
       $get('statusDiv').innerHTML = 'Spell check is complete';
    }
    </script>
    <div runat="server" id="statusDiv" />       
            
    <telerik:RadSpell
       ID="RadSpell1"
       runat="server"
       ButtonType="PushButton"
       ControlToCheck="TextBox1"
       OnClientCheckFinished="checkFinished"
    />    
    <asp:TextBox ID="TextBox1" runat="server"></asp:TextBox>



    Kind regards,
    Rumen
    the Telerik team

    Do you want to have your say when we set our development plans? Do you want to know when a feature you care about is added or when a bug fixed? Explore the Telerik Public Issue Tracking system and vote to affect the priority of the items.

  • Gavin Palmer avatar

    Posted on Apr 26, 2010 (permalink)

    Thanks for the quick response.

Back to Top

Skip Navigation LinksHome / Community & Support / Developer Productivity Tools Forums / ASP.NET > Spell > Removing "The Spell Check is complete!" message