|
RadEditor is shipped with a full-featured multilingual spell-checker
(tehcnically, a separate component called RadSpell).
As of version 7.0 RadEditor brings the spellchecking
experience to a whole new level with an inline AJAX spellchecker.
You can now check your spelling asynchronously and all your mistaken words will
be highlighted inline. The context menu on every word gives you a quick and
easy way to Change, Ignore or Add the word to a custom dictionary.
The AJAX spellchecker is enabled by adding the tool AjaxSpellCheck
in the editor's ToolsFile.
The dialog-based spellchecker is enabled by adding the SpellCheck tool
in the ToolsFile.
<tool name="AjaxSpellCheck"/>
<tool name="SpellCheck"/>
RadEditor will take care of the loading and instanciating RadSpell,
setting its properties accordingly, rendering it on the web form.
In this example it is possible to configure the editor to use both standard and
AJAX-type spellchecking, as well as being able to specify a certain language
from a dropdown list.
To use multiple languages you should add the Languages node in the toolsfile,
e.g.:
<Languages>
<language code="en-US" title="English"></language>
<language code="fr-FR" title="French"></language>
</Languages>
|