Skip Navigation LinksHome / Community & Support / Developer Productivity Tools Forums / ASP.NET > Spell > Underline misspelled words
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.

Not answered Underline misspelled words

Feed from this thread
  • Posted on Jul 13, 2009 (permalink)

    Hi i am interested in getting an underline or some other way of showing misspelled words.
    I have had a look at the examples, all of them require a popup that checks the spelling.
    Is there a way to have the spelling checked on the whole text and all possible mistakes underlined?

    Thanks

  • Tervel Tervel admin's avatar

    Posted on Jul 14, 2009 (permalink)

    Hello Andrew,

    Yes, it is possible - but only if you use RadEditor and its inline spellchecker.
    Please review the following demo (and press the Spellcheck button to initiate the process):
    http://demos.telerik.com/aspnet-ajax/editor/examples/default/defaultcs.aspx

    Best regards,
    Tervel
    the Telerik team

    Instantly find answers to your questions on the new Telerik Support Portal.
    Check out the tips for optimizing your support resource searches.

  • Posted on Jul 26, 2009 (permalink)

    Thank you for your help.
    Not exactly what i am trying to do.
    I don't really want the popup box. I just want the user to be notified after he has typed the word that it is in fact spelled incorrectly.
    Sort of the way word does.

  • Rumen Rumen admin's avatar

    Posted on Jul 29, 2009 (permalink)

    Hi Andrew,

    The fully automatic inline spellchecking is currently not supported by RadEditor.

    The content area of the editor is an editable IFRAME and allows to highlight the misspelled words by wrapping them inside a <span> tag with inline css and class attributes, e.g.

    <span class="RadEWrongWord" id="RadESpellError_0" style="background-color: #ffff00;">misspelledword</span>

    There is no other way to highlight the misspelled words except using HTML tags and css.

    If we enable the automatic spellchecking this will drastically decrease the editing performance and slowdown the browser, because we should insert a span tag with inline style for every newly inserted misspelled word.

    Please, note that Firefox offers built-in inline spellchecking and your users could use it instead of the editor's spellchecker.

    Kind regards,
    Rumen
    the Telerik team

    Instantly find answers to your questions on the new Telerik Support Portal.
    Check out the tips for optimizing your support resource searches.

  • Jared avatar

    Posted on Jun 24, 2010 (permalink)

    I presume this is still not possible?  We are looking to implement a solution that allows user to see misspelled words as they type (much like Word).

    Thanks,
    Jared

  • Rumen Rumen admin's avatar

    Posted on Jun 30, 2010 (permalink)

    Hi Jared,

    For the time being, we do not plan to provide automatic spellchecking while typing in RadEditor due to performance issues. If you edit large text then this will decrease the typing / editing performance, because the JavaScript code has 10 times slower performance compared to native compiled code. RadEditor also runs multiple content filters on the client that will additionally decrease the performance when spell checking large content.

    All major browsers (except Internet Explorer) offer their own built-in spellcheckers that perform inline spell checking in the editable elements: textareas, editable iframe and div elements. The content area of RadEditor is editable IFRAME. I hope that this feature will be implemented by IE developers in one of the next version of this browser and RadEditor will support it.

    Best 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

  • Jared avatar

    Posted on Jul 8, 2010 (permalink)

    Thanks, Rumen.

    Jared

Back to Top

Skip Navigation LinksHome / Community & Support / Developer Productivity Tools Forums / ASP.NET > Spell > Underline misspelled words