Completed
Last Updated: 07 Jul 2022 10:07 by ADMIN
Release LIB 2022.2.711 (11 Jul 2022)
When the definition of margin-[left/right] contains a CSS function as a value for the property, NullReferenceException is thrown while importing the content.
Completed
Last Updated: 06 Jul 2022 12:20 by ADMIN
Release LIB 2022.2.711 (11 Jul 2022)
When the definition of font-weight contains a CSS variable as a value for the property, NullReferenceException is thrown while importing the content.
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: 05 Jul 2022 12:11 by ADMIN
Release LIB 2022.2.711 (11 Jul 2022)
The error is thrown while measuring a nested table and one of its rows is separated on different pages. 
Completed
Last Updated: 04 Jul 2022 07:22 by ADMIN
Release LIB 2022.2.704 (04 Jul 2022)
When the font of the document is set to a non-default font (for example Arial) and the caret is moved around the same line, it jumps up and down at the start and end of words.
Completed
Last Updated: 04 Jul 2022 07:21 by ADMIN
Release LIB 2022.2.704 (04 Jul 2022)

RichTextBox: Exception when loading a table with a specific layout in R2 2022

This works with R1 2022 SP1

Completed
Last Updated: 27 Jun 2022 08:52 by ADMIN
Release LIB 2022.2.627 (27 Jun 2022)
When importing a document with a content control present inside the header/footer, only the content remains and the control itself gets stripped.
Completed
Last Updated: 27 Jun 2022 08:52 by ADMIN
Release LIB 2022.2.627 (27 Jun 2022)
When in Header/Footer mode trying to insert a content control causes it to be added inside the main document.
Completed
Last Updated: 06 Jun 2022 09:06 by ADMIN
Release LIB 2022.2.606 (06 Jun 2022)
RIchTextBox: Changing the current value of ComboBox/DropDownList/DatePicker/CheckBox content control causes two items to appear in the undo stack - Delete and Insert.
Completed
Last Updated: 20 May 2022 07:38 by ADMIN
Release LIB 2022.2.523 (23 May 2022)

Showing a document that contains a Table object without any TableRow inside leads to NullReferenceException.

Workaround: After importing the document, remove the tables that don't have content:

foreach (var table in document.EnumerateChildrenOfType<Table>())
{
    if (table.Rows.Count < 1)
    {
        table.Parent.Children.Remove(table);
    }
}

Completed
Last Updated: 18 Apr 2022 08:25 by ADMIN
Release LIB 2022.1.418 (18 Apr 2022)
The exception is thrown with a message "Item has already been added. Key in dictionary: 'RepeatButtonLineUpTemplate'" and it is caused by a duplicate style definition. 
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: 21 Mar 2022 08:38 by ADMIN
Release LIB 2020.2.831 (31/08/2020)
The parent of an already removed span cannot be found and a NullReferenceException is thrown while performing Undo. Also, multiple asserts are failing in Debug mode. The stack trace is:

UnhandledException: Object reference not set to an instance of an object.
UnhandledException:   at Telerik.Windows.Documents.Layout.LayoutElement.SetParent(LayoutElement newParent)
   at Telerik.Windows.Documents.Layout.LayoutBox.EnsureParent()
   at Telerik.Windows.Documents.Layout.LayoutBox.get_Parent()
   at Telerik.Windows.Documents.Layout.LayoutBox.get_ValidParent()
   at Telerik.Windows.Documents.WordPositionHandler.GetParentHandler()
   at Telerik.Windows.Documents.DocumentPosition.GetCurrentSectionBox()
   at Telerik.Windows.Documents.UI.DocumentPrintLayoutPresenter.GetCurrentPage()
   at Telerik.Windows.Documents.UI.DocumentPrintLayoutPresenter.MeasureOverride(Size availableSize)
   at System.Windows.FrameworkElement.MeasureCore(Size availableSize)
Completed
Last Updated: 15 Mar 2022 10:26 by ADMIN
Release LIB 2022.1.321 (21 Mar 2021)
Converting DOCX with EMF images to HTML and importing the resultant HTML leads to missing images.
Completed
Last Updated: 21 Feb 2022 14:46 by ADMIN
Release R1 2022 SP1
Validation visualization resets to show that contents are valid when a new validation error is added to an already failing state.
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:59 by ADMIN
Release R1 2022 SP1
Created by: Tomas von Peltzer
Comments: 0
Category: RichTextBox
Type: Bug Report
0
The client application hangs while reading a document containing a diagram inside. Internally, multiple OutOfMemoryException and InvalidOperationException errors are thrown.
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: 16 Feb 2022 11:51 by ADMIN
Release R1 2022 SP1
Exception when loading document with ConnectionShapeLocks
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.