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: 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: 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: 27 Aug 2020 05:54 by ADMIN
Memory leak caused by the section columns dialog
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: 05 Sep 2022 12:55 by Vladimir
The editor used for the footnotes causes ArgumentNullException when trying to pass the dialog to it.
Unplanned
Last Updated: 16 Apr 2021 14:33 by ADMIN
Keys in Traditional Chinese On-screen Keyboard are duplicated.
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: 13 Feb 2024 06:33 by Jason
Created by: Jason
Comments: 0
Category: RichTextBox
Type: Bug Report
1
Shape text is not exported to PDF.
Unplanned
Last Updated: 13 Feb 2024 06:44 by Jason
Cut and Copy operations are disabled in a shape with text.
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.
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.
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: 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: 09 Jun 2020 14:47 by ADMIN
When importing an HTML file which contains table should align table cell content left and middle. Instead, it aligns them left and top.
Unplanned
Last Updated: 23 Aug 2021 12:01 by ADMIN
RichTextBox: Replacing text in a hyperlink puts the text with a wrong start position. It starts from the second index.
Unplanned
Last Updated: 09 Apr 2020 14:16 by ADMIN
The document content is not measured properly, leading to incorrect selection ranges.
Unplanned
Last Updated: 10 Mar 2020 07:23 by ADMIN
Invalid document is generated when track changes is enabled and the InsertFragment method is used
Unplanned
Last Updated: 31 Oct 2018 07:54 by ADMIN
When ignoring incorrect words through the Spelling dialog and you reach the last word in the document which is incorrect, only one more word from the beginning of the document is checked prior showing a message that the check is complete. Instead, all incorrect words starting from the beginning of the document should be spellchecked. 

The issue is reproduced when adding the incorrect words to the dictionary. In order to reproduce the issue, only "Ignore" or "Add to Dictionary" action should be applied. When the actions are mixed, the issue is not reproduced.

Workaround: before opening the spellchecking dialog, move caret at the beginning of the document
this.radRichTextBox.Document.CaretPosition.MoveToFirstPositionInDocument();
Unplanned
Last Updated: 31 Oct 2018 07:54 by ADMIN
Left indent and hanging indent of paragraph in a list are changed when the document is exported to HTML and then imported.

Steps to reproduce:
- Add text.
- Apply list over the text.
- Export the document to HTML
- Import the exported HTML
Expected: The paragraph in the list preserves its left indent (18 px) and hanging indent (18 px).
Actual: The paragraph in the list is with left indent 18 px and hanging indent 0 px.