Unplanned
Last Updated: 06 Apr 2022 07:25 by Khushbu
Provide information about the performed operation in the DataChanged event.
Unplanned
Last Updated: 13 May 2021 12:15 by ADMIN
Created by: Qingxiao
Comments: 0
Category: SpellChecker
Type: Feature Request
1
This will enable users to show a busy indicator when checking a document with SpellCheckingMode.AllAtOnce.
Unplanned
Last Updated: 19 May 2020 11:11 by ADMIN
Unplanned
Last Updated: 08 Apr 2020 09:36 by ADMIN

It seems that initializing this property chain:

rtbSpellChecker.SpellChecker.Settings.SpellCheckUppercaseWords = true;

causes the DocumentSpellChecker to be replaced by a new instance.

Workaround: Add an additionally registered RadRichTextBoxSpellChecker:

RadRichTextBoxSpellChecker rtbSpellChecker = new RadRichTextBoxSpellChecker();
rtbSpellChecker.SpellChecker.Settings.SpellCheckUppercaseWords = true;
ControlSpellCheckersManager.RegisterControlSpellChecker(rtbSpellChecker);

Unplanned
Last Updated: 07 Nov 2018 20:40 by Mohamoud
When spell checking is invoked with SpellCheckingMode.AllAtOnce the parent window (the windows which showed the spell checking dialog) can be positioned in front of the spell checking windows (for example if toolbar icon for the window is pressed). This is most probably because the owner of the spell checking dialog is not set.
Unplanned
Last Updated: 31 Oct 2018 07:54 by ADMIN
ADMIN
Created by: Svetoslav
Comments: 0
Category: SpellChecker
Type: Feature Request
1
Provide option allowing to choose whether URLs should be spell checked.
Unplanned
Last Updated: 31 Oct 2018 07:54 by ADMIN
ADMIN
Created by: Tanya
Comments: 0
Category: SpellChecker
Type: Feature Request
4
When the spell-check find an error in a TextBox, the wrong word should be underlined with a red curly line.
Unplanned
Last Updated: 13 Apr 2018 13:29 by ADMIN
ADMIN
Created by: Tanya
Comments: 0
Category: SpellChecker
Type: Feature Request
0
Make the TextBox spell checker generic, so that controls that inherit from TextBox can be spell checked out of the box. 
Unplanned
Last Updated: 13 Apr 2018 13:27 by ADMIN
ADMIN
Created by: Tanya
Comments: 0
Category: SpellChecker
Type: Feature Request
1
When the custom control for spell checking contains several TextBoxes, allow spell checking of them in turns, instead of opening a different spell checking dialog for each. 
Unplanned
Last Updated: 28 Mar 2018 15:55 by ADMIN
Currently, setting RadSpellChecker.WindowSettings.ShowAlertWhenSpellCheckingCompleted only partially affects the "All at once" spell checking scenario. It is used only to suppress the alert in cases when there are not spelling errors in the control. Instead, it should be used to suppress the informational message at the end of the spell checking process and automatically close the dialog.

Workaround: Create custom spell checker class, similar to RadSpellChecker, which automatically close the dialog (see the attached project).