Completed
Last Updated: 29 Jan 2021 15:21 by ADMIN
Release LIB 2021.1.201 (1/2/2021)
Exception when creating RichtTextBox in separate threads in .NET Core
Completed
Last Updated: 29 Jan 2021 15:02 by ADMIN
Release LIB 2021.1.201 (1/2/2021)
The paste options are not respected when using the Paste method for the first time.
Completed
Last Updated: 28 Jan 2021 13:16 by ADMIN
Release LIB 2021.1.201 (1/2/2021)
Image adorner is not properly ported and it is not supported in .Net Core.
Completed
Last Updated: 26 Jan 2021 14:13 by ADMIN
Release LIB 2021.1.201 (1/2/2021)

Type a few lines in RadRichTextBox.
Double-clicking within a word, holding down the mouse button on the second click, and then drag it. 

Actual: Dragging will move the word instead of extending the selection as it should.
Expected: The selection should be extended. Moving the word shouldn't happen unless you release after the double click and then click and drag. 

Unplanned
Last Updated: 25 Jan 2021 06:57 by ADMIN
Column width is different from Word with a specific document. width is set with both, tblGrid and preferred width. 
Unplanned
Last Updated: 22 Jan 2021 11:30 by ADMIN
 Table cells padding is changed when there is an empty cell
Completed
Last Updated: 21 Jan 2021 09:29 by ADMIN

Depending on the current layout of the document, invoking SetPosition() for a specific location might result in positioning the caret on the line prior to the expected one.

Steps to reproduce:

  • Create a document using the following code:

radRichTextBox.Insert("one: ");
radRichTextBox.Insert(Environment.NewLine);
radRichTextBox.Insert("two: ");
radRichTextBox.Insert(Environment.NewLine);
radRichTextBox.Insert("tree: ");
radRichTextBox.Insert(Environment.NewLine);
radRichTextBox.Insert("four: ");
radRichTextBox.Insert(Environment.NewLine);
radRichTextBox.Insert("five: ");
radRichTextBox.Insert(Environment.NewLine);
radRichTextBox.Insert("seks: ");
radRichTextBox.Insert(Environment.NewLine);
radRichTextBox.Insert("seven: ");
radRichTextBox.Insert(Environment.NewLine);
radRichTextBox.Insert("eitgh: ");
radRichTextBox.Insert(Environment.NewLine);
radRichTextBox.Insert("nine: ");
radRichTextBox.Insert(Environment.NewLine);
radRichTextBox.Insert("ten: ");

  • Place the caret at the end of the "nine: " line
  • Invoke SetPosition():

radRichTextBox.Document.CaretPosition.SetPosition(radRichTextBox.Document.CaretPosition.Location);
radRichTextBox.Focus();

Observed: The caret is positioned after "eitgh:"

Expected: The caret shouldn't change its position

Completed
Last Updated: 21 Jan 2021 06:42 by ADMIN
Release R1 2019
ADMIN
Created by: Todor
Comments: 2
Category: RichTextBox
Type: Bug Report
7
Improve measure and arrange of a document and its child document elements respectively - Span, Paragraph, Table, Section and etc. This will also improve the import time for large documents.
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.
Unplanned
Last Updated: 04 Jan 2021 12:54 by ADMIN
Created by: Tanya
Comments: 0
Category: RichTextBox
Type: Feature Request
1
RadRichTextBox's ContextMenu should open when the Context menu key on the keyboard is pressed. 
Completed
Last Updated: 23 Dec 2020 07:47 by ADMIN
Release LIB 2020.3.1229 (29/12/2020)
The floating images are always imported with WrappingStyle.Square.
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.')

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 Dec 2020 12:26 by ADMIN
Release LIB 2020.3.1207 (07/12/2020)
Instead of moving the position after the content control, the caret goes on the last position in the control. This behavior affects keyboard input negatively, as users need to manually navigate to the right.
Completed
Last Updated: 02 Dec 2020 08:30 by ADMIN
Release LIB 2020.3.1207 (07/12/2020)
CheckBoxes defined on block level (i.e. wrapping a table cell) cannot be manually clicked at run-time.
Completed
Last Updated: 30 Nov 2020 15:03 by ADMIN
Release LIB 2020.3.1207 (07/12/2020)
Importing structured document tags with auto-close SdtContent tag throws InvalidCastException exception
Unplanned
Last Updated: 23 Nov 2020 10:42 by ADMIN
Provide API for enforcing the use of only FIPS 140-2 compliant hashing algorithms
Unplanned
Last Updated: 20 Nov 2020 07:39 by ADMIN
Created by: Lance
Comments: 0
Category: RichTextBox
Type: Feature Request
11
Implement a MarkdownFormatProvider, which will allow import/export from/to markdown format.
Unplanned
Last Updated: 17 Nov 2020 07:11 by ADMIN
ADMIN
Created by: Tanya
Comments: 3
Category: RichTextBox
Type: Feature Request
3

In MS Word, the users can change the background color of the page. 

A 'w:background' property is applied to the whole document in DOCX, and this property is used as a page color in Paged layout mode, and as a background color in Web layout mode. 

When implementing, think of whether RadRichTextBox.Background should be synchronized with this property when RadRichTextBox.DocumentInheritsDefaultStyleSettings is true.

Workaround: Currently, background could be set using RadRichTextBox.Background property in Web layout mode, and using a custom style, as described in When the LayoutMode is Paged the Background forum thread, in Paged layout mode.

 

Completed
Last Updated: 16 Nov 2020 10:36 by ADMIN
Release LIB 2020.3.1116 (16/11/2020)

When a content control check box updates it state at run-time, any local formatting is lost.

Workaround: Formatting defined in style definition is properly kept.