Unplanned
Last Updated: 05 Mar 2021 16:49 by ADMIN

When inserting a content control (structured document tag) into an empty RadDocument using one of the overloads of the InsertStructuredDocumentTag method accessible from RadRichTextBox and RadDocumentEditor, a NullReferenceException is thrown.

Workaround: Invoke the EnsureDocumentMeasuredAndArranged method before inserting the content control:

document.EnsureDocumentMeasuredAndArranged();

RadDocumentEditor editor = new RadDocumentEditor(document);
editor.InsertStructuredDocumentTag(SdtType.CheckBox);

Completed
Last Updated: 05 Mar 2021 15:09 by ADMIN
Release LIB 2021.1.309 (9/3/2021)
When RadRichTextBox is bound to a data provider, there is a memory leak caused by a handler class related to the content controls functionality.
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: 01 Mar 2021 15:54 by ADMIN
Created by: Oksana
Comments: 0
Category: RichTextBox
Type: Bug Report
0

Bookmarks are not imported and missing from a specific document scenario.

Workaround: Import and then export the document using the WordsProcessing library and then open it with the editor.

Unplanned
Last Updated: 25 Feb 2021 08:30 by ADMIN
One is unable to add tabs to a list with a specific level.
Completed
Last Updated: 19 Feb 2021 08:26 by ADMIN
Release R1 2021 SP1
The caret position is incorrect when there is a global ScrollViewer style that sets the FlowDirection to RightToLeft
Completed
Last Updated: 17 Feb 2021 09:48 by ADMIN
Release LIB 2021.1.215 (15/2/2021)

In certain rare occasions, double-clicking a table cell may throw:

inline does not belong to this document.
at Telerik.Windows.Documents.Model.RadDocument.GetContainingAnnotationRanges[TRangeStart](Inline inline, Predicate`1 filter, Boolean inclusive)
at Telerik.Windows.Documents.Selection.MouseSelectionHandler.HandleCheckBox(InlineLayoutBox layoutBox)
at Telerik.Windows.Documents.Selection.MouseSelectionHandler.RegisterDocumentSingleMouseDown(Boolean ctrlPressed, Boolean shiftPressed, Point position, UIElement originalSource)

. . .

Completed
Last Updated: 09 Feb 2021 15:51 by ADMIN
Release LIB 2021.1.215 (15/2/2021)
Created by: Ralf
Comments: 0
Category: RichTextBox
Type: Feature Request
0
When trying to export a document containing an ".ico" image to DOCX or RTF an exception is thrown.
Unplanned
Last Updated: 09 Feb 2021 08:50 by ADMIN
Binding errors from RadRibbonGallery in the TableStylesGallery are outputted in the Output window in Visual Studio, because of binding to the StyleDefinitions and CurrenSelectedStyle properties of the gallery's view model.
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: 03 Feb 2021 10:16 by ADMIN
ADMIN
Created by: Petya
Comments: 5
Category: RichTextBox
Type: Feature Request
12

Command that converts currently selected text to sentence case, lowercase, uppercase, capitalizes each word, or toggles case, while preserving the styling. A sample demonstrating how to add a custom implementation of a similar command is attached.

Include import and export in open XML - (<w:caps /> property in run properties) and in HTML (text-transform property).
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.