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

How to remove "Spell check is complete" popup from RadEditor

2 Answers 103 Views
UI for ASP.NET AJAX in ASP.NET MVC
This is a migrated thread and some comments may be shown as answers.
jawahar
Top achievements
Rank 1
jawahar asked on 17 Oct 2012, 11:46 AM
Hi,
    Do we have any property or method that will hide or remove the "Spell check is complete" popup from the RadEditor..?? I saw that  we have a event(OnClientCheckFinished) in RadSpell that will do the above.But in my case im using RadEditor control(inbuilt spellcheck).Whether we have a property or we need to get the object of spellcheck from the RadEditor.If so, how to do it.Please help me on this requirement.


Thanks and Regards,
Jawahar

2 Answers, 1 is accepted

Sort by
0
Rumen
Telerik team
answered on 18 Oct 2012, 03:36 PM
Hello,

You can see how to hide the "Spell check is complete" popup in this forum thread: http://www.telerik.com/community/forums/aspnet-ajax/editor/ajaxspellcheck-in-radeditor.aspx

Kind regards,
Rumen
the Telerik team
If you want to get updates on new releases, tips and tricks and sneak peeks at our product labs directly from the developers working on the RadControls for ASP.NET AJAX, subscribe to their blog feed now.
0
jawahar
Top achievements
Rank 1
answered on 19 Oct 2012, 12:21 PM
Hi Rumen,

              Thanks for your support. But i did it in a different way.Please look in to my below code.


var spell = editor.get_ajaxSpellCheck();  // Get a reference to RadEditor's SpellCheck

     // Code to remove the alert - "Spell check is complete"
     spell._spellEngine = new Telerik.Web.UI.Editor.SpellEngineUI(spell.get_editor(), spell);

     spell._spellEngine.onSpellCheckComplete = Function.createDelegate(spell, function () {

      spell.finishSpellCheck();

     });

Thanks and Regards,
Jawahar


Tags
UI for ASP.NET AJAX in ASP.NET MVC
Asked by
jawahar
Top achievements
Rank 1
Answers by
Rumen
Telerik team
jawahar
Top achievements
Rank 1
Share this question
or