Unplanned
Last Updated: 03 Apr 2024 13:15 by ADMIN

If FontSize is not explicitly set in the style, the value displayed in the StyleFormattingPropertiesDialog is 16, which is from the const DocumentDefaultSettings.DEFAULT_FONT_SIZE.

But when rendering document, the actural font size is from the   StyleDefinition "defaultDocumentStyle".

So if the FontSize in the  StyleDefinition "defaultDocumentStyle" is set to a value other than 16 (I set it to a value of 12 in the attached document), the FontSize displayed in the StyleFormattingPropertiesDialog is incorrect.

Completed
Last Updated: 24 Apr 2024 05:26 by ADMIN
Release 2024.1.423
Starting the selection with shift from an empty cell expands one more cell the first time.
Completed
Last Updated: 14 May 2024 15:37 by ADMIN
Release 2024.2.514 (2024 Q2)
Invalid layout setting the position to the end of the line insetting text and performing undo operation. In some cases, this causes NullRefenceException or ArgumentOutOfRangeException.
Won't Fix
Last Updated: 14 Jun 2024 10:06 by ADMIN
Creating a DocumentFragment from a document with hyperlinks removes the links. Consider exposing the Add method of DocumentFragment as well. 
Completed
Last Updated: 01 Jul 2024 11:22 by ADMIN
Release 2024.2.701 (Preview)
 InvalidOperationException: Parent shape is not measured when loading a page with shapes
Completed
Last Updated: 01 Jul 2024 11:22 by ADMIN
Release 2024.2.701 (Preview)
The text drag is not working and the selection is cleared when clicking the second time.
Declined
Last Updated: 06 Aug 2024 07:01 by ADMIN

The TableCellProperty.Padding property of the "TableNormal" StyleDefinition doesn't take effect in the UI. The same is valid for the TableProperties.CellPadding property.

To work this around, you can manually set the Padding property of all TableCell elements in the RadDocument.

 var cells = radDocument.EnumerateChildrenOfType<Telerik.Windows.Documents.Model.TableCell>();
 foreach (var cell in cells)
 {
     cell.Padding = new Padding(10);
 }

Completed
Last Updated: 12 Nov 2024 08:17 by ADMIN
Release Telerik UI for WPF 2024.4.1111 (2024 Q4)
One is unable to insert SDT (content controls) right before or right after another content control. 
Unplanned
Last Updated: 09 Aug 2024 07:04 by Swapnil
Replacing content that contains a list using DocumentFragment results in an invalid list style applied to the last paragraph.
Unplanned
Last Updated: 09 Aug 2024 08:26 by Swapnil
 Unify the keyboard selection in tables with the arrow keys to match MS Word.
Completed
Last Updated: 22 Aug 2024 07:49 by ADMIN
Release 2024.3.821
Performing an Undo operation on a span executes a delete which removes the annotations within the current selection. This leads to invalid removed annotations and exception when executing the second undo.
Completed
Last Updated: 18 Oct 2024 06:17 by ADMIN
Release 2024.3.924
The annotations are not restored correctly when performing undo operations 3 times.
Completed
Last Updated: 12 Nov 2024 08:17 by ADMIN
Release Telerik UI for WPF 2024.4.1111 (2024 Q4)
Exception when manipulating shapes in Flow layout mode.
Unplanned
Last Updated: 27 Sep 2024 05:16 by ADMIN
NullReferenceException when loading a document with a continuous section break.
Unplanned
Last Updated: 09 Oct 2024 09:19 by Mark
   

To reproduce set he following properties: 

MouseSelectionHandler.DoubleClickTime = 1000;
MouseSelectionHandler.MouseDragThreshold = 2;

MouseSelectionHandler.MouseDoubleClickThreshold = 60;

Unplanned
Last Updated: 11 Oct 2024 06:09 by Mark
RichTextBox: Custom annotations are not rendered correctly when they have no content and are right-aligned (gif Attached).