Completed
Last Updated: 03 Oct 2023 08:20 by ADMIN
Release R3 2023
RadRichTextBox: Creating a new document fragment from imported document adds empty paragraph at the end.
Unplanned
Last Updated: 28 Sep 2023 10:38 by Caesar
Undo of action with lists in not recovering the original state of the document.
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.  
Completed
Last Updated: 07 Sep 2023 12:47 by ADMIN
Release LIB 2023.2.918 (18 Sep 2023)

Austria (German) region is set in windows. Digit grouping symbol is set "," and decimal symbol is ".".

Inserting rounded rectangle shape in RichTextBox produces broken geometry like so:

Completed
Last Updated: 07 Sep 2023 12:11 by ADMIN
When the Windows 11 theme is applied, opening the drop-down menu of either the ShapesColorPicker or ShapesOutlinePicker results in an InvalidOperationException.
Unplanned
Last Updated: 04 Sep 2023 13:33 by Caesar
 Invalid result when inserting row to a table with a merged cells.
Unplanned
Last Updated: 31 Aug 2023 11:25 by Caesar
Add support for TextAlignment of lists similar to Word. In Word, the entire list can aligned to the center or right. 
Unplanned
Last Updated: 28 Aug 2023 13:05 by Caesar
Incorrect list item sequence when adding new items to existing list. 
Unplanned
Last Updated: 25 Aug 2023 09:37 by Vladimir
Annotation markers can be left after deleting when annotation start and annotation end are in different selection ranges. 
Unplanned
Last Updated: 24 Aug 2023 06:36 by ADMIN

The non-breaking space breaks the word if a number character is presented in the word. For example, the following text should be treated as one word - 10,0 % but it is separated into to words - 10,0 and %.

The issue can be observed when the word should break on the next line. 

Completed
Last Updated: 18 Aug 2023 08:06 by ADMIN
Release LIB 2022.2.808 (08 Aug 2022)
When a non-breaking space appears after a letter and punctuation symbol, it is not respected and the line can break on it.
Unplanned
Last Updated: 18 Aug 2023 07:48 by Thomas
Created by: Thomas
Comments: 0
Category: RichTextBox
Type: Feature Request
0
Add support for non-breaking hyphen.
Completed
Last Updated: 07 Aug 2023 13:32 by ADMIN
Release LIB 2023.2.821 (21 Aug 2023)
The selected text cannot be deleted after scrolling to another page.
Completed
Last Updated: 07 Aug 2023 13:32 by ADMIN
Release LIB 2023.2.821 (21 Aug 2023)
Wrong tab stop position when copying from RichTextBox and pasting in Word.
Completed
Last Updated: 31 Jul 2023 14:35 by ADMIN
Release LIB 2023.2.807 (7 Aug 2023)
The FontFamilly is not preserved when one is pasting from WordPad.
Won't Fix
Last Updated: 31 Jul 2023 13:51 by ADMIN
Highlighted text's color is set to gray when saving and reopening the file.
Unplanned
Last Updated: 31 Jul 2023 13:30 by Stenly
Add a color palette that contains the highlight colors from the Office Open XML specification (see attached). Currently, we provide an extended palette that contains colors that are not supported in the DOCX format. 
Completed
Last Updated: 21 Jul 2023 08:14 by ADMIN
Release LIB 2023.2.731 (31 Jul 2023)
If RadRichTextBox contains a table and is placed in a window and then the window is resized horizontally, the table border are moved unexpectedly and change their place relative to the content of the documen. If the window is maximized and/or restored, some of the borders disappear.

Workaround: Execute the following code snippet in window's or RadRichTextBox' SizeChanged event handler:
if (this.MyRadRichTextBox.ActiveEditorPresenter != null)
{
    this.MyRadRichTextBox.ActiveEditorPresenter.RecreateUI();
}
Completed
Last Updated: 17 Jul 2023 05:39 by ADMIN
Release R2 2023 SP1
RtfFormatProvider: Importing an RTF document that does not have a valid styles table causes NullReferenceException.
Completed
Last Updated: 14 Jul 2023 07:27 by ADMIN
Release R2 2023 SP1

NullReferenceException when changing themes, the RichTextBox has TrackChanges enabled, and the current user is set.

Workaround: set empty user like this: 

private void RadRichTextBox_ProtectionStateChanged(object sender, EventArgs e)
{
    if (this.radRichTextBox.CurrentUser == null)
    {
        this.radRichTextBox.CurrentUser = new Telerik.Windows.Documents.Model.UserInfo(string.Empty, string.Empty, string.Empty, string.Empty);
    }
}