Unplanned
Last Updated: 04 Aug 2020 06:15 by ADMIN
The table merge and columns width are not correct when importing a specific document
Unplanned
Last Updated: 17 Jun 2022 08:11 by ADMIN
Replacing a piece of text through find/replace dialog causes intersecting insert/delete ranges. 
Completed
Last Updated: 12 Jan 2016 15:04 by ADMIN
In specific conditions, when selecting text through the document, NullReferenceException is thrown in RectPathBuilder class.
Unplanned
Last Updated: 16 Apr 2021 14:33 by ADMIN
Keys in Traditional Chinese On-screen Keyboard are duplicated.
Unplanned
Last Updated: 25 Aug 2020 11:16 by ADMIN

Hello,

   We found a problem when using the radrichtextbox control. When radrichtextbox is enabled to cancel input, error will be reported using the sougou Chinese input method. This problem will not occur in the English input method. Please help solve it. Thank you very much.

Unplanned
Last Updated: 27 Aug 2020 05:54 by ADMIN
Memory leak caused by the section columns dialog
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.
Unplanned
Last Updated: 15 Sep 2020 08:16 by ADMIN

The DeepCopy method does not copy the font of the predefined table styles

 

Workaround:

var fragment = new DocumentFragment(radRichTextBox.Document);
radRichTextBox.Document = new RadDocument();
DefaultStyleSheet.Instance.ApplyStylesheetToDocument(radRichTextBox.Document);
radRichTextBox.InsertFragment(fragment);

Unplanned
Last Updated: 18 Sep 2020 06:12 by ADMIN
Created by: Maulik
Comments: 0
Category: RichTextBox
Type: Bug Report
1
When the copied text doesn't contain any formating the Keep Text Only paste option should be applied (check the attached record.gif)
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: 29 Feb 2024 13:37 by Øyvind

Numbered lists have invalid values when combining documents by using the InsertFragment method.

 

Workaround: use RadDocumentMerger:

RadDocument radDocument1 = RtfSourceProvider.Import(rtf1);
RadDocument radDocument2 = RtfSourceProvider.Import(rtf2);

AppendDocumentOptions options = new AppendDocumentOptions();
options.FirstSourceSectionPropertiesResolutionMode = SectionPropertiesResolutionMode.NoSectionBreak;

RadDocumentMerger merger = new RadDocumentMerger(radDocument1);
merger.AppendDocument(radDocument2, options);

RichText.Document = merger.Document;

Unplanned
Last Updated: 27 Feb 2024 07:13 by Jose Ramon
The caret is in wrong place when editing HTML with line breaks and using the Web Layout.
Completed
Last Updated: 16 Oct 2020 12:27 by ADMIN
Release R3 2020 SP1
Copying a Table and then pasting it as plain text results in each table cell added on a new line. Instead, the content of the cells on a single table row should be separated by tabs and newlines should differentiate the table rows.
Unplanned
Last Updated: 21 Oct 2020 08:45 by ADMIN
 The paragraph which has run with vanish attribute is not imported from docx
Unplanned
Last Updated: 10 Jan 2024 13:27 by Luke

The paste options popup stays visible when the window is deactivated

Workaround: 

private void MainWindow_Deactivated(object sender, EventArgs e)
{
    var popup = radRichTextBox.PasteOptionsPopup as PasteOptionsPopup;
    popup.Close();
}
Unplanned
Last Updated: 30 Oct 2020 08:31 by ADMIN
When changing the names of the style and export to RTF the style names are duplicated when imported again
Completed
Last Updated: 07 Jan 2021 12:57 by ADMIN
Release R1 2021
Unlike the other font properties, text highlighting should never be extended to new content that is appended to a highlighted span.
Completed
Last Updated: 03 Dec 2020 12:28 by ADMIN
Release LIB 2020.3.1207 (07/12/2020)
Importing a structured document tag (content control) that contains a data binding in its properties, which has no prefix mappings defined causes an exception during document layout.
Unplanned
Last Updated: 15 Dec 2020 09:33 by ADMIN

After deleting a custom annotation using the DeleteAnnotationRange method when there is a text immediately in front of the annotation start:

and then trying to delete the last character in this former annotation range an exception is thrown (Exception: System.InvalidOperationException: 'inline does not belong to this document.')