Unplanned
Last Updated: 16 Apr 2021 14:33 by ADMIN
Keys in Traditional Chinese On-screen Keyboard are duplicated.
Unplanned
Last Updated: 09 Apr 2021 13:05 by ADMIN
Add informational items such as Page Number, Line Number, Column, Word Count, Character Count, at RichTextBox's status bar.
Completed
Last Updated: 06 Apr 2021 11:03 by ADMIN
Release LIB 2021.1.412 (12/04/2021)
When importing an image with а missing bitmap frame and trying to create a BitmapImage for it, the BitmapImage class throws an exception.
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: 28 Mar 2021 07:21 by ADMIN

When the Track Changes is On and we try to change the style it applies the first time but the second try throws an exception and the style doesn't apply: System.ArgumentNullException: 'Value cannot be null. Parameter name: owner'.

1. Add new text "TEST".
2. Select the text and set a new style "Heading 2", then "Heading 1".
Observed: Heading 1 doesn`t appear.

Unplanned
Last Updated: 28 Mar 2021 06:55 by ADMIN

When the Track Changes is activated, a Hyperlink is inserted to a text and we try to reject changes the rejection is not applied correctly.

The result:

Completed
Last Updated: 18 Mar 2021 14:04 by ADMIN
Release LIB 2021.1.322 (22/3/2021)

When the unit type is set to an inch:

Expected: to could be able to place the RulerThumb on every 1/16 of an inch.
Actual: be able to place the RulerThumb to every 1/8 of an inch. 

Completed
Last Updated: 16 Mar 2021 12:12 by ADMIN
Release LIB 2021.1.322 (22/3/2021)

The GetSupportedExtensions method of DocumentFormatProvidersManager throws NullReferenceException when invoked.

Workaround:

HashSet<string> supportedExtensions = new HashSet<string>();
foreach (var provider in DocumentFormatProvidersManager.FormatProviders)
{
    foreach (var extension in provider.SupportedExtensions)
    {
        supportedExtensions.Add(extension);
    }
}

 

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 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).