Unplanned
Last Updated: 15 Jan 2024 08:09 by Martin Ivanov
The character used to measure the non breaking spaces (the degree sign) is causing the space to render with a width bigger than the standard space. 
Unplanned
Last Updated: 02 Jan 2024 11:48 by Martin Ivanov
Currently, the document model reads the scene3d tag of the shape drawing, but RadRichTextBox doesn't support rendering this information. 
Unplanned
Last Updated: 26 Jan 2024 09:24 by Oliver
There are some special characters in the Polish alphabet, which are inserted with key combinations - AltGr + E should insert "ę", Alt Gr + L should insert "ł". These combinations are overridden in RichTextBox because are triggering default commands in Silverlight.
 

Workaround: Attach to the PreviewEditorKeyDown event:
  this.radRichTextBox.PreviewEditorKeyDown += (sender, args) =>
     {
         if (Keyboard.Modifiers.HasFlag(ModifierKeys.Alt) && Keyboard.Modifiers.HasFlag(ModifierKeys.Control) && args.Key == Key.E)
         {
             args.SuppressDefaultAction = true;
             args.OriginalArgs.Handled = true;
             this.radRichTextBox.Insert("€");
         }
     };

Unplanned
Last Updated: 02 Feb 2024 13:16 by Martin Ivanov
Currently, the CheckBox SDT doesn't support editing, compared to MS Word where you can change its font and other settings. Add support for this in RadRichTextBox.
Completed
Last Updated: 25 Jan 2024 19:04 by ADMIN
Release LIB 2023.3.1315 (15 Jan 2024)
Shift + left arrow navigation is wrong in a table cell. Compare this to MS Word and make sure we are behaving the same way. 
Completed
Last Updated: 11 Mar 2024 07:36 by ADMIN
Release 2024.1.312
RichTextBox: Sometimes Double mouse clicks will not execute when clicking into the middle of a letter (triple can become double). This is due to the mouse drag threshold, we should also expose the setting for this. 
Unplanned
Last Updated: 20 Sep 2023 09:58 by Ihor
Text alignment is lost when creating fragment from selection or the IsLastParagraphClosed property is set to false.  
Unplanned
Last Updated: 22 Nov 2023 07:10 by Alexey
The control scrolls to caret position when switching the "Show/Hide Formatting Symbols" button.
Unplanned
Last Updated: 22 Nov 2023 07:56 by Alexey
When scrolling the caret moves to the upper left corner of the page.
Declined
Last Updated: 25 Oct 2023 08:58 by ADMIN
The RadDocument.MailMerge() function crashes a service after the mail merge is ran several times
Completed
Last Updated: 10 Nov 2023 06:22 by ADMIN
Release R3 2023 SP1
Created by: Jose Ramon
Comments: 0
Category: RichTextBox
Type: Bug Report
1
HTML NaN values cause InvalidOperationException.
Unplanned
Last Updated: 05 Sep 2022 12:55 by Vladimir
The editor used for the footnotes causes ArgumentNullException when trying to pass the dialog to it.
Completed
Last Updated: 05 Aug 2022 10:11 by ADMIN
Release LIB 2022.2.808 (08 Aug 2022)

RichTextBox: The RepeatButtonStyle is not merged in the RichTextBox Xaml file when declaring the styles on a window level.

 

Workaround: Add the dictionaries to the App.xaml file instead of the Window file.

Unplanned
Last Updated: 10 Nov 2022 15:32 by Caesar
The MS Word has a context menu option Remove Content Control which is missing in the RadRichTextBox UI.
Completed
Last Updated: 19 Jan 2023 14:56 by ADMIN
German localization for Automatic color is wrong in the Table border dialog.
Completed
Last Updated: 25 Oct 2023 08:47 by ADMIN
Release LIB 2023.3.1106 (6 Nov 2023)
The dialogs are not inheriting the theme correctly/fully.
Completed
Last Updated: 04 Oct 2022 13:33 by ADMIN
Release LIB 2022.3.1010 (10 Oct 2022)
Internal exception of type NullReferenceException is thrown when the field has an empty code fragment.
Unplanned
Last Updated: 27 Sep 2022 06:14 by ADMIN
Created by: William
Comments: 2
Category: RichTextBox
Type: Feature Request
1
Merge undo commands when typing consecutive text. In Word when typing continuous text (without changing the caret position) it is added as only one undo step. In RichTextBox every keystroke (or multiple keystrokes with less than 15 milliseconds in delay) is added as separate undo steps.
Unplanned
Last Updated: 10 Apr 2023 08:20 by James
All items in the FonntFamilly combo box must preview the respective font like in Word. This is implemented in the selection mini toolbar but not in the ribbon and the font properties dialog.  
Unplanned
Last Updated: 20 Feb 2023 07:25 by Naval
An extra line is added when an HTML document with <br> tag inside a <div> is imported.