Spell Checking
The Bootstrap Rich Text Editor delivers built-in spell checking support, including the type-as-you-go error detection. This demo shows how a document's spelling can be checked and corrected within the Rich Text Editor.
You can use the Settings.SpellChecker
property to define the spell checking availability and the main spelling options (such as the selected culture and paths to alphabet, grammar and dictionary files).
<dx:BootstrapRichEdit runat="server" ActiveTabIndex="0" ShowConfirmOnLosingChanges="false">
<Settings>
<SpellChecker Enabled="true" SuggestionCount="4">
<Dictionaries>
<dx:ASPxSpellCheckerISpellDictionary
GrammarPath="~/App_Data/Dictionaries/english.aff"
DictionaryPath="~/App_Data/Dictionaries/american.xlg"
Culture="English (United States)"
CacheKey="enDic">
</dx:ASPxSpellCheckerISpellDictionary>
</Dictionaries>
</SpellChecker>
</Settings>
</dx:BootstrapRichEdit>