Completed
Last Updated: 27 Jan 2015 16:17 by ADMIN
ADMIN
Dess | Tech Support Engineer, Principal
Created on: 08 Jan 2015 14:46
Category: Editors
Type: Bug Report
0
FIX. RadSpellChecker - When RadTextBoxControl contains words followed by colon or semi-colon, the red underline indicating errors appears
To reproduce: add a RadSpellChecker and a RadTextBoxControl. Set the RadSpellChecker.AutoSpellCheckControl property to the RadTextBoxControl.
Please refer to the attached screenshot.

Workaround:
Dim tbSpellChecker As TextBoxSpellChecker = Me.RadSpellChecker1.GetControlSpellChecker(GetType(RadTextBoxControl))
Dim fi As FieldInfo = GetType(TextBoxSpellChecker).GetField("punctuation", BindingFlags.NonPublic Or BindingFlags.Instance)
Dim chars As Char() = " .,;:!?-\\/|~!@#$%^&*()_+=".ToCharArray()
fi.SetValue(tbSpellChecker, chars)
0 comments