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.
Unplanned
Last Updated: 07 Aug 2023 05:58 by ADMIN
The text is not committed and is still in edit mode when the control loses focus. The partial commit of content is not working as well.
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);
    }
}

Unplanned
Last Updated: 06 Jul 2023 15:05 by Vladimir
When applying a style to a document containing a list, saving it to a .rtf file and loading it back, the style is not applied to the list. 
Unplanned
Last Updated: 03 Jul 2023 05:34 by ADMIN
Add a way to convert between RadRichTextBox's RadDocument and RadWordsProcessing's RadFlowDocument. 

This will enable integration scenarios between the two products, including using RadWordsProcessing's format providers for import and export.
Unplanned
Last Updated: 16 Jun 2023 08:24 by Stanley
When the table is split into 2 pages and the remaining part is smaller than the header it is not visualized.
Unplanned
Last Updated: 15 Jun 2023 09:46 by n/a
Auto text color in a cell in the table does not show the correct coloring. For example, when the background of the cell is changed to black or another dark color the text forecolor should be automatically adjusted. 
Unplanned
Last Updated: 12 Jun 2023 06:47 by ADMIN
Text containing mixed Right-to-Left and Left-to-Right parts are visualized incorrectly - some of the punctuation marks swap their places.

Partial workaround: Use RadRichTextBox's TextRenderingMode = TextBlockWithPropertyCaching. This mode also has problems, but it works in some cases.
Unplanned
Last Updated: 06 Jun 2023 06:03 by Deltaohm
Exporting field with code ending with curly bracket trims it.
Completed
Last Updated: 29 May 2023 12:21 by ADMIN
Release R2 2023
InvalidCastException is thrown when importing a document containing multiple unclosed fields.
Unplanned
Last Updated: 29 May 2023 04:42 by Swapnil
Editing after selecting the end of the line removes the line break. In Word, the line break (paragraph) is preserved. 
Unplanned
Last Updated: 25 May 2023 13:23 by Xiao
Image inline is not transferred to the next page and is cropped when it is too big for the remaining space on the current page.