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: 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. 
Completed
Last Updated: 02 Nov 2023 16:38 by ADMIN
Release LIB 2023.3.1106 (6 Nov 2023)

In this case, the MergeField Code value without the brackets gets concatenated before the display name of the MergeField in the document. 

This reproduces after the document get exported and the DocxExportSettings' FieldResultMode property is set to FieldDisplayMode.DisplayName.

The MergeField is displayed correctly in RadRichTextBox. The issue occurs only when the document is displayed in MS Word.

To work this around, set the DocxExportSettings FieldResultMode value to null.

DocxFormatProvider docxFormatProvider = new DocxFormatProvider() 
{
	ExportSettings = new DocxExportSettings() 
	{
		FieldResultMode = null
	} 
};

Unplanned
Last Updated: 24 Aug 2023 06:36 by ADMIN

The non-breaking space breaks the word if a comma 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: 03 Nov 2023 09:24 by ADMIN
Release LIB 2023.3.1106 (6 Nov 2023)
ChangeAllFieldsDisplayMode throws NullReferenceException when there is a page counter in the footer
Completed
Last Updated: 07 Nov 2023 12:08 by ADMIN
Release R3 2023 SP1
The AnnotationRange is lost during the export of a DocumentFragment created from the current selection.
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: 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.
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. 
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.
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: 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);
    }
}

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: 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: 06 Jun 2023 06:03 by Deltaohm
Exporting field with code ending with curly bracket trims it.
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.
Unplanned
Last Updated: 24 May 2023 12:09 by ADMIN
If the margins of one side are equal to the default value, it will become 0 after import

Completed
Last Updated: 29 May 2023 12:21 by ADMIN
Release R2 2023
InvalidCastException is thrown when importing a document containing multiple unclosed fields.