Unplanned
Last Updated: 11 Jul 2025 21:33 by Daniel

Document exported to DOCX with 2025 Q2 cannot be opened by 2025 Q1 or previous versions.

 

Workaround: Use document processing to fix the document.

var processing_provider = new Telerik.Windows.Documents.Flow.FormatProviders.Docx.DocxFormatProvider();

var document = processing_provider.Import(File.ReadAllBytes("C:\\Users\\test\\Downloads\\word1.docx"),null);
var bytes_ = processing_provider.Export(document, null);

var rtb_provider = new Telerik.Windows.Documents.FormatProviders.OpenXml.Docx.DocxFormatProvider();
var doc = rtb_provider.Import(bytes_);
radRichTextBox.Document = doc;

Unplanned
Last Updated: 10 Jul 2025 21:42 by Daniel
Exporting RadDocument to docx format (using the DocxFormatProvider) produces an invalid file. The file is read properly by document viewers like RadRichTextBox or MS Word, but if you open it with "Open XML SDK Productivity Tool for Microsoft Office" or another app that validates documents, the document is treated as invalid.

To work this around, you can import the invalid .docx document using the RadWordsProcessing library (and its RadFlowDocument) and then export it again with RadWordsProcessing.
Unplanned
Last Updated: 10 Jul 2025 13:38 by ADMIN
Unplanned
Last Updated: 10 Jul 2025 11:13 by Swapnil
The \page tag is not respected on import. We should insert new lien o a page break.
Unplanned
Last Updated: 10 Jul 2025 09:17 by ADMIN
The editor used for the footnotes causes ArgumentNullException when trying to pass the dialog to it.
Unplanned
Last Updated: 10 Jul 2025 08:06 by Martin Ivanov

The RadExpander element gets underlined in the Visual Studio designer and you can see a NullReferenceException when mouse over the element. The issue occurs only when data bind the IsExpanded property of RadExpander.

There are no issues at runtime. Also, in the common scenario the designer doesn't break. In case the error breaks the designer, you can set the IsExpanded bindining in the code-behind, instead of XAML.

public MainWindow()
{
    InitializeComponent();
    this.radExpander.SetBinding(RadExpander.IsExpandedProperty, new Binding("IsExpanded"));
}

Unplanned
Last Updated: 07 Jul 2025 13:45 by Stenly
Currently, when exporting/copying cells from a column that is bound to a nested property, the base logic of the GridViewDataColumn is that it has a separate logic for this setup. When exporting/copying, the column will try to retrieve the display value rather than the underlying value.
Unplanned
Last Updated: 02 Jul 2025 13:39 by Stenly

When applying a ListDataValidation, the created RadDropDownButton, which has a RadPathButton in it, looks broken when using the Windows11, Office2013, Office2019, and VisualStudio2019 themes.

Unplanned
Last Updated: 01 Jul 2025 10:01 by Martin Ivanov

Currently, the delimiter is hardcoded to ",". Add a setting that allows changing this and also synchronizing it with the current culture of the system.

Unplanned
Last Updated: 26 Jun 2025 08:38 by Access
Provide text formatting options while typing in the chat textbox. The formatted text should be properly visualized as well. 
Unplanned
Last Updated: 24 Jun 2025 14:54 by Martin Ivanov
The size of some images in specific documents is scaled and positioned wrongly.
Unplanned
Last Updated: 24 Jun 2025 06:35 by ADMIN
No license found for Telerik UI for WPF when using Wix installer.
Unplanned
Last Updated: 23 Jun 2025 09:23 by Martin Ivanov
Currently, the QueryableEntityCoreCollectionView<T> class forces you to have an empty/parameterless constructor for the T type. This allows easier creation of the items at runtime. However, in some situations it makes sense to allow classes with only constructors with parameters. Such scenario is when following the DDD (Domain-Driven Design) pattern where it is strongly adviced to avoid having empty constructor in your entity classes.
Unplanned
Last Updated: 18 Jun 2025 04:44 by ADMIN
Nested tables with empty cells are not correctly imported. 
Unplanned
Last Updated: 17 Jun 2025 07:55 by ADMIN
ADMIN
Created by: Tanya
Comments: 12
Category: UI for WPF
Type: Feature Request
35
Enable the customers to create and modify .pptx (PowerPoint) files . They need processing as well as showing such documents.
Unplanned
Last Updated: 11 Jun 2025 07:23 by Stefan
Expose API that allows you to add/remove Annotations/IPointerHandler implementations from the PointerHandlersController.
Unplanned
Last Updated: 09 Jun 2025 09:02 by Martin Ivanov

The cell highlighting doesn't work if the ItemsSourceProvider.ItemsSource is set at runtime, while the drop down is open. The filtering of the items works, but the cell content is not colored.

To work this around, make sure to set the ItemsSource before the drop down gets opened.

Unplanned
Last Updated: 04 Jun 2025 14:42 by Stenly
Created by: Stenly
Comments: 0
Category: RichTextBox
Type: Feature Request
1
Currently, the RadRichTextBox supports only the MS Pinyin. We could add support for QQ Pinyin.
Unplanned
Last Updated: 04 Jun 2025 11:52 by Stenly
Currently, when pressing the "More Sorting Options..." menu item to customize the sorting, a new SortingEditor dialog is created each time. For its ViewModel property, a new SortingOptionsViewModel instance is created. There isn't an option to persist the customization that the client has performed previously when reopening the dialog, so we could add such an option.
Unplanned
Last Updated: 04 Jun 2025 08:18 by ADMIN
Created by: LindenauAtSOG
Comments: 1
Category: PivotGrid
Type: Bug Report
0

In your demo select PivotGrid - Olap Support


1. add "Exchange Rates: Average Rate" to values
2. sort rows by "Reseller Order Quantity"
-> The grid will be empty

 

If the list is filtered by "Total Reseller Order Quantity != 0", results will show again. Thus, sorting by a column which contains rows without values seems to be faulty.

1 2 3 4 5 6