Unplanned
Last Updated: 20 Dec 2021 06:26 by ADMIN
Copy Content and paste in comment causes Stackoverflow Exception 
Declined
Last Updated: 08 Feb 2022 13:00 by ADMIN

Using the microsoft word,In docx document,inserting a shape,and add the text context to the shape,then save.

when radrichtextbox  open the file,the program crashed.

Completed
Last Updated: 16 Dec 2021 14:38 by ADMIN
Release LIB 2021.3.1220 (20 Dec 2021)

When a whole paragraph is selected and the Set Numbering Value command is executed, the numbering value of the next paragraph is changed instead of the current one.

Workaround: Clear the selection prior to executing the command:
private void radRichTextBox_CommandExecuting(object sender, CommandExecutingEventArgs e)
{
    if (e.Command is ShowSetNumberingValueDialogCommand)
    {
        this.radRichTextBox.Document.CaretPosition.MoveToPosition(this.radRichTextBox.Document.Selection.Ranges.First.StartPosition);
    }
}

Completed
Last Updated: 17 Dec 2021 14:01 by ADMIN
Release LIB 2021.3.1220 (20 Dec 2021)
Spans containing complex script text are styled using the iCs and bCs elements for font style and font-weight. DocxFormatProvider currently doesn't export them, leading to incorrect styling when the document is opened in MS Word.
Completed
Last Updated: 16 Dec 2021 15:47 by ADMIN
Release LIB 2021.3.1220 (20 Dec 2021)

The issue is observed when the added table is preceded by a paragraph with a font size different from the default one. As the issue is caused by a broken mouse capture, the following workaround can be employed:

someRandomFrameworkElement.CaptureMouse();

someRandomFrameworkElement.ReleaseMouseCapture();

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.
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.
Unplanned
Last Updated: 19 Nov 2021 14:26 by ADMIN
As a result, the track changes are visualized but not functioning properly.
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.
Completed
Last Updated: 08 Dec 2021 10:56 by ADMIN
Release LIB 2021.3.1213 (13 Dec 2021)
RichTextBox: Expose a way so one can access the text of the shape via the public API.
Unplanned
Last Updated: 27 Oct 2021 12:46 by ADMIN

Having two mention providers and using the second right after using the first one actually loads the source of the first provider.

Completed
Last Updated: 24 Nov 2021 14:23 by ADMIN
Release LIB 2021.3.1129 (29 Nov 2021)
The mail merge does not work with fields inside shapes' text
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.
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: 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: 05 Jul 2022 14:33 by ADMIN
Release LIB 2022.2.711 (11 Jul 2022)
  1. In MS Word, create a table with text in every cell, but just before the table, add a paragraph with text (you cannot reproduce the problem with an empty paragraph)
  2. In the RadRichTextBox, create a new document
  3. Activate Review/Track Changes
  4. Copy and paste all the content from MS Word >> as a result none of the cells in the table has change tracking markup
  5. If you copy only the table from MS Word (without the non-empty paragraph), it is working as expected
Completed
Last Updated: 12 Oct 2021 14:31 by ADMIN
Release R3 2021 SP1
The exception is thrown while trying to measure a cell that has a floating image in it and should be transferred to the next page as the space available on the current one is not enough to be rendered.
Unplanned
Last Updated: 30 Sep 2021 11:07 by ADMIN

Exception when importing a document with an empty table.

Workaround: Remove the empty tables:

DocxFormatProvider provider = new DocxFormatProvider();
var doc = provider.Import(File.ReadAllBytes(@"C:\Users\mpc\Downloads\22-51.docx"));

foreach (var section in doc.Sections)
{
    var tables = section.EnumerateChildrenOfType<Table>();
    foreach (var table in tables.ToList())
    {
        if (table.Rows.Count == 0)
        {
            section.Blocks.Remove(table);
        }
    }
}
radRichTextBox.Document = doc;

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
Completed
Last Updated: 27 Sep 2021 08:00 by ADMIN
Release LIB 2021.3.927 (27 Sep 2021)
Moving focus away causes 2 lost focus events - one from the caret and one from document presenter. Both of them bubble to the parent RadRichTextBox, causing an inconsistent behavior.