Completed
Last Updated: 19 May 2021 13:37 by ADMIN
Release LIB 2021.2.525 (25/05/2021)
PdfExport: InvalidOperationException: 'Nullable object must have a value.'
Completed
Last Updated: 19 May 2017 13:26 by ADMIN
 ArgumentException is thrown when a missing image with no width and height is imported from HTML format.

Steps to reproduce:
1. Import the attached HTML.
2. Wait for a few second for loading the image.

Actual: An ArgumentException is thrown for setting the width or height of an image to an infinity.

Fix available in LIB Version 2017.2.522.
Completed
Last Updated: 17 Jul 2017 06:30 by ADMIN
ADMIN
Created by: Boby
Comments: 0
Category: RichTextBox
Type: Bug Report
1
When typing in RadRichTextBox, the characters appear in the document with slight delay.
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.
Completed
Last Updated: 03 Aug 2017 06:19 by ADMIN
EMF images cannot be natively parsed by the WPF framework and are not supported in RadRichTextBox. Stop the exception so the document can be imported.

Fix available in LIB Version 2017.2.724.
Completed
Last Updated: 16 Jul 2018 13:40 by ADMIN
RadParagraphPropertiesDialog throws NullReferenceException when paragraphs with different type of indent (hanging + first line) are selected, and then alignment is applied through the dialog.

Steps to reproduce:
Variant 1:
- Insert three paragraphs (press Enter two times in a blank document).
- Using the document ruler (do not use the RadParagraphProperties dialog), modify first line indent on the first paragraph to some value, and handing indent of the second to some value.
- Select the two paragraphs and open Paragraph Properties dialog. (Note: can be reproduced more easily on first opening of the dialog).
- Change Indentation -> Left: value to 6 pt.
- Press OK.

NullReferenceException is thrown. 

Available in LIB Version 2017.3.1023.
Completed
Last Updated: 14 May 2024 15:37 by ADMIN
Release 2024.2.514 (2024 Q2)

HtmlFormatProvider: Exception when importing a table that has only width set.  In this case, we are trying to measure some elements with float.NaN. 

Workaround: Use the HtmlFormatProvider from the Document Processing library. 

 
Completed
Last Updated: 11 Mar 2024 07:36 by ADMIN
Release 2024.1.312
RichTextBox: Sometimes Double mouse clicks will not execute when clicking into the middle of a letter (triple can become double). This is due to the mouse drag threshold, we should also expose the setting for this. 
Completed
Last Updated: 25 Jan 2024 19:04 by ADMIN
Release LIB 2023.3.1315 (15 Jan 2024)
Shift + left arrow navigation is wrong in a table cell. Compare this to MS Word and make sure we are behaving the same way. 
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: 10 Nov 2023 06:22 by ADMIN
Release R3 2023 SP1
Created by: Jose Ramon
Comments: 0
Category: RichTextBox
Type: Bug Report
1
HTML NaN values cause InvalidOperationException.
Completed
Last Updated: 12 Dec 2017 09:25 by Thomas
When a document with NumPages field in header or footer is exported to PDF, NumPages field is evaluated wrongly - 1 for the first page, 2 for the second page, etc.

The bug is regression, introduced with R3 2017 SP1 (2017_3_1018).

Fix available in LIB Version 2017.3.1211.
Completed
Last Updated: 25 Aug 2021 15:24 by ADMIN
Release LIB 2021.2.830 (30 Aug 2021)
TableStyleGallery keeps RadDocument and RadRIchTextBox instances living due to a living event subscription to DocumentPosition PresentationChanged and StyleCollection StyleNameChanged
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: 18 Dec 2017 12:36 by ADMIN
SelectionMiniToolBar and ImageMiniToolBar stay visible when keys associated with commands bindings are pressed, for example:
- When Delete key is pressed
- When arrow keys are pressed

The expected behavior is mini tool bars to hide on each key press.

Fix available in LIB Version 2017.3.1211.
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.
Completed
Last Updated: 07 Oct 2021 07:50 by ADMIN
Release LIB 2021.3.1011 (11 Oct 2021)
Setting IsPrimary to false should make styles disappear from the ribbon style gallery. In the current version this behavior gets broken as soon as styles are initially loaded.
Completed
Last Updated: 26 Mar 2018 10:51 by ADMIN
There is a large performance hit when manipulating an area of the document with many annotation ranges in it.

Fix available in LIB Version 2018.1.326.
Completed
Last Updated: 19 May 2021 14:49 by ADMIN
Release LIB 2021.2.525 (25/05/2021)

In the Track Change mode, try to insert several images using standard InsertPictureCommand (or even Editor.InsertImage()) double enter and then again. Or insert text between already inserted images.

The error could be also observed when accepting all changes.

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
	} 
};