Unplanned
Last Updated: 26 Oct 2021 09:17 by ADMIN
Code is executed after focusing the RadRichTextBox and before the previous control loses the focus.
Unplanned
Last Updated: 04 Aug 2021 13:36 by ADMIN
The CSS style names shouldn't contain non-ASCII characters and if present, they should be escaped. HtmlFormatProvider doesn't escape them while exporting and cannot properly import the generated file.
Unplanned
Last Updated: 09 Jun 2022 11:08 by Xiao
When there is a table and a paragraph in the header, the added watermark appears multiple times.
Unplanned
Last Updated: 23 Jul 2021 09:38 by ADMIN
When a big image is pasted from Word with defined Square wrapping and the layout mode is Flow, then the scrollbar of the page is not visible and the image is not auto-stretched.
Unplanned
Last Updated: 02 Jul 2021 10:05 by Emin Sadigov
A NullReferenceException is thrown when a new picture is inserted in a document with enabled tracked changes. Sometimes it might take two or three images to be inserted for the exception to occur once the document is open. The original document should contain image >> text >> image >> text.
Unplanned
Last Updated: 30 Jun 2021 08:27 by ADMIN
When the header contains fields whose result value length increases through the pages, the height of the first measured header is respected. This could result in missing content on the following pages. An example of such a field is the PAGE field whose value initially is a single-digit but can increase.
Unplanned
Last Updated: 01 Jun 2021 09:37 by ADMIN

The default styles are not copied when using the CreateDocumentFromSelection method.

Workaround: Manually copy the styles:

var document = radRichTextBox.Document.Selection.CreateDocumentFromSelection();
document.StyleRepository.Clear();
foreach (var item in radRichTextBox.Document.StyleRepository)
{
    var style = new StyleDefinition(item);
    document.StyleRepository.Add(style);
}

Unplanned
Last Updated: 20 Feb 2023 07:25 by Naval
An extra line is added when an HTML document with <br> tag inside a <div> is imported.
Unplanned
Last Updated: 17 Jun 2022 08:11 by ADMIN
Replacing a piece of text through find/replace dialog causes intersecting insert/delete ranges. 
Unplanned
Last Updated: 27 May 2021 09:15 by ADMIN
When you access apps using the RichTextBox control through a Web Client the keyboard input is not consistent. This is caused by WPF TextBox (which is used internally by our Caret) not always receiving PreviewKeyDown events.

Such a case is when the user holds the Shift key and types capital letters. The result is not displayed until the user pushes a key for which the PreviewKeyDown event is triggered.
Unplanned
Last Updated: 17 May 2021 08:23 by ADMIN
Inner row and cell borders are not respected when importing table with specific borders
Unplanned
Last Updated: 05 Apr 2021 10:04 by ADMIN
Wrong indexing when export the list override index ("\ls") THe index should start from 1 not from 2 or 3
Unplanned
Last Updated: 08 Mar 2021 13:26 by ADMIN

When "rFonts" is set in docDefaults:

<w:styles>
	<w:docDefaults>
		<w:rPrDefault>
			<w:rPr>
				<w:rFonts w:ascii="Verdana" w:eastAsia="Times New Roman" w:hAnsi="Verdana" w:cs="Verdana"/>
				...
			</w:rPr>
		</w:rPrDefault>

and partially in the local run properties:

<w:r>
	<w:rPr>
		<w:rFonts w:cs="Times New Roman"/>
		...
	</w:rPr>
	<w:t>Text</w:t>
</w:r>

A wrong font is applied.

ExpectedVerdana
Actual: Times New Roman

Unplanned
Last Updated: 05 Mar 2021 05:56 by ADMIN
The span's bounding rectangle is not measured correctly, which results in creating a visual text element with smaller height than needed. Resizing the table cell does not affect the scenario as expected.
Unplanned
Last Updated: 08 Feb 2021 06:49 by ADMIN
Text is cut off and border size is different when DPI scaling is other than 100%. The caret is not placed correctly as well. 
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.')

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
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: 21 Oct 2020 08:45 by ADMIN
 The paragraph which has run with vanish attribute is not imported from docx
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)