Completed
Last Updated: 16 Feb 2022 11:59 by ADMIN
Release R1 2022 SP1
Shapes inside a:cxnSpLocks elements are imported wrongly and cause NullReferenceException in Telerik.Windows.Documents.dll while laying out them.
Completed
Last Updated: 16 Feb 2022 11:50 by ADMIN
Release R1 2022 SP1
Created by: Stefan
Comments: 0
Category: RichTextBox
Type: Bug Report
1
When the 'NoFill' option is selected for the fill of a shape, it should be rendered. However, the shape is visualized in RadRichTextBox with white fill.
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: 30 Jun 2021 08:28 by ADMIN
Created by: Stefan
Comments: 0
Category: RichTextBox
Type: Feature Request
1
These shapes represent a thin line with an arrow. They cannot be inserted through the UI and are not properly rendered when importing a document with them.
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: 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: 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.
Completed
Last Updated: 24 Aug 2021 14:13 by ADMIN
Release LIB 2021.2.830 (30 Aug 2021)
Watermark position is not correct when using multiline text
Completed
Last Updated: 20 Oct 2021 13:36 by ADMIN
Release LIB 2021.3.1025 (25 Oct 2021)
KeyNotFoundException when loading an rtf file with missing fonts
Unplanned
Last Updated: 19 Oct 2021 06:53 by ADMIN
Created by: Morten
Comments: 0
Category: RichTextBox
Type: Feature Request
1
When using RadDocumentMerger to merge or append a document, and an undo group has been started, the following exception is thrown: System.InvalidOperationException: 'Clear Undo while in begin undo group'
Completed
Last Updated: 14 Feb 2022 08:13 by ADMIN
Release LIB 2022.1.214 (14 Feb 2022)

Some dialogs like ParagraphPropertiesDialog and SectionColumnsDialog have dependency properties for defining the width of the numerics. When creating implicit style, the value of these custom properties results in 0 and they are invisible in the UI.

Workaround: Set the value of the property in the custom style. For paragraph properties dialog:

<Style TargetType="rtb:RadParagraphPropertiesDialog" BasedOn="{StaticResource CustomStyle}" >
    <Setter Property="NumericWidth" Value="85"/>
</Style>

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: 03 Oct 2022 08:31 by ADMIN
The text is cut off at the end of characters when the impact font is used.
Unplanned
Last Updated: 19 Nov 2021 14:26 by ADMIN
As a result, the track changes are visualized but not functioning properly.
Completed
Last Updated: 16 Feb 2022 11:51 by ADMIN
Release R1 2022 SP1
DrawingML StyleMatrix indices are 1 based, but when a 0 index is provided, the property should receive a value of null.
Completed
Last Updated: 07 Dec 2021 13:44 by ADMIN
Release LIB 2021.3.1213 (13 Dec 2021)
Created by: Imran
Comments: 0
Category: RichTextBox
Type: Bug Report
1
Let's have a document with a paragraph with only one span which contains a single space character and a table below that paragraph. Position the caret right after the space in the paragraph and press the delete key. The result is that the layout stops updating i.e. clicking anywhere does not visually move the caret, writing something shows as only spaces are added. If the document is forcefully refreshed (by scrolling down and then up again) the changes are reflected.
Unplanned
Last Updated: 20 Dec 2021 06:26 by ADMIN
Copy Content and paste in comment causes Stackoverflow Exception 
Unplanned
Last Updated: 18 Jan 2022 12:57 by ADMIN

In this feature, the existing text is overridden as the user types on it with the "Insert" key is pressed on the keyboard.

Workaround: Track the state of the Insert key and delete before inserting content using the KeyDown and CommandExecuting events:

private void MainDemoControl_KeyDown(object sender, System.Windows.Input.KeyEventArgs e)
{
    if (e.KeyboardDevice.IsKeyToggled(Key.Insert))
    {
        this.isInsertKeyPressed = true;
    }
    else
    {
        this.isInsertKeyPressed = false;    
    }
}
private void radRichTextBox_CommandExecuting(object sender, CommandExecutingEventArgs e)
{
    if (e.Command is InsertTextCommand && this.isInsertKeyPressed)
    {
        this.radRichTextBox.Delete(false);
    }
}

Completed
Last Updated: 08 Apr 2022 07:32 by ADMIN
Release LIB 2022.1.411 (11 Apr 2022)
In word, the focus is transferred to the Find and Replace dialog immediately after opening it.

In the RichTextBox control the focus is not set to the dialog when open. Selecting a word does properly add it to the dialog.
Completed
Last Updated: 14 Feb 2022 08:17 by ADMIN
Release LIB 2022.1.214 (14 Feb 2022)
The HTML is not properly escaped and the writer throws InvalidOperationException.