In Development
Last Updated: 15 May 2026 15:12 by ADMIN
Currently Minimize\Restore\Maximize buttons are not shown in the ToolWindow's header, so there are some inconveniences in use. For example, it's impossible to minimize tool windows easily.
In Development
Last Updated: 15 May 2026 14:44 by ADMIN
Created by: Martin Ivanov
Comments: 0
Category: ScheduleView
Type: Feature Request
1
Current, there is no public API that let you know when the active view definition is changed. Expose an event for this.

Now, you can listen for changes in the active view definition by overriding the OnActiveViewDefinitionChanged method of RadScheduleView.
public class CustomScheduleView : RadScheduleView
{
	protected override void OnActiveViewDefinitionChanged(ViewDefinitionBase oldValue, ViewDefinitionBase newValue)
	{
		base.OnActiveViewDefinitionChanged(oldValue, newValue);
	}
}

Completed
Last Updated: 14 May 2026 16:33 by ADMIN
Release 2026.2.514 (2026 Q2)
The document will be imported with a loss of content. The reason is that ASCII85Decoder will throw an ArgumentException when the stream doesn't end with '~>'. 

Although this is invalid case according to PDF specification, other applications are handling it and the document is successfully visualized in them. We may also consider implementing workaround that handles such invalid streams.
Completed
Last Updated: 14 May 2026 16:33 by ADMIN
Release 2026.2.514 (2026 Q2)

According to the PDF specification (AdobeĀ® Portable Document Format Version 1.7):
Append a rectangle to the current path as a complete subpath, with lower-left corner (x, y) and dimensions width and height in user space.

The operation: 

x y width height re

An invalid case:

0 - 595 -842 re

This leads to an exception thrown: System.NullReferenceException: 'Object reference not set to an instance of an object.'

In Development
Last Updated: 14 May 2026 08:38 by ADMIN
Scheduled for Q2 2026
Currently, the GenerateExport method provides a PivotExportModel instance where the Cells collection is populated with the formatted value of the cells.

We could add an option to allow the copying of the raw data instead.
In Development
Last Updated: 09 May 2026 20:22 by ADMIN
Make the UpdateViewPort of the SelectionUILayer class virtual so it can be overridden, thus allowing customization of the selection rectangle drawn in the UI.
Unplanned
Last Updated: 03 May 2026 15:00 by James
ADMIN
Created by: Todor
Comments: 9
Category: RichTextBox
Type: Feature Request
9
Implement the export of notes (footnote, endnote) in the PdfFormatProvider of the RadRichTextBox.
Unplanned
Last Updated: 01 May 2026 07:43 by Martin Ivanov
Add keyboard navigation in the DropDownList and ComboBox SDT elements (content controls) of RadRichTextBox. 
Alt(or another modifier)+Down for drop down opening and Up and Down arrows for navigation in the items.
Unplanned
Last Updated: 29 Apr 2026 19:01 by ADMIN
Created by: Robby
Comments: 4
Category: SyntaxEditor
Type: Feature Request
6

We want to have the option to replace texts only in a selected part of the document. 

Use Notepad++ as a reference to check this feature.

In Development
Last Updated: 29 Apr 2026 08:48 by ADMIN
Created by: Martin Ivanov
Comments: 0
Category: Chat
Type: Feature Request
0

Currently, the InputBoxText property of the RadChat control has a read-only purpose. It is updated only when you update the text via the UI. However, the property has also a public setter which implies that it can be set, but this doesn't work. 
Allow setting the InputBoxText property, which should update the text in the input TextBox.

For the moment, you can get the RadWatermarkTextBox element using the FindChildByType<T> method and set its Text property manually.

var textBox = this.chat.FindChildByType<RadWatermarkTextBox>();
textBox.SetCurrentValue(RadWatermarkTextBox.TextProperty, "new text")

Unplanned
Last Updated: 28 Apr 2026 13:02 by Martin Ivanov
Created by: Martin Ivanov
Comments: 0
Category: RichTextBox
Type: Feature Request
0
Currently, the SdtProperties classes (ex: DateProperties) can be extended by overriding the GetBuilder() method. This allows you to implement custom ISdtBuilder that creates the document content of the SDT form. However, the custom properties are not taken into account during import/export. Consider adding some kind of custom information about the custom SdtProperties type during export and restore it during import. Or at the least provide API (like an event or method override) that can intercept the creation of the SdtProperties during import which will allow you to replace the default SdtProperties object.
In Development
Last Updated: 23 Apr 2026 09:28 by ADMIN
Currently, the headers of the menu items in the context menu are hardcoded. Add localization support so they change based on the applied culture.
Unplanned
Last Updated: 22 Apr 2026 10:15 by Martin Ivanov
Currently, the userDataFolder given to the CoreWebView2Environment object used with the WebView2 speech recognizer is hardcoded to a specific folder. 

Add an option to allow the developer to set the userDataFolder manually in the default WebView2SpeechRecognizer. Or at the least to respect the WEBVIEW2_USER_DATA_FOLDER environment variable which is used when the userDataFolder parameter is not used.
In Development
Last Updated: 21 Apr 2026 11:49 by ADMIN
RadGridView provides two methods to bring an item into the view. We could extend these or create a new one to bring an item to a specific position.
Unplanned
Last Updated: 21 Apr 2026 08:07 by ADMIN
The feature needs to cover functionality as follows: The logarithmic axis has an exponent step (1, 10, 100, 1000) and the current ticks support of the axis only plots evenly distributed ticks. Clients, however, sometimes need to display unevenly distributed ticks (1, 2, 3, 4, 5, 6, 7, 8, 9, 10, and so on).
Completed
Last Updated: 15 Apr 2026 07:43 by ADMIN
Release Telerik UI for WPF 2026.1.415
Currently, if you have a cell that merges into multiple columns, when you click on the column header, this will select also the adjacent columns where the merged cell extends. Add an option to disable this functionality and select only the cells in the clicked column.
Unplanned
Last Updated: 03 Apr 2026 15:54 by Martin Ivanov

Add protection mode that allows to make the document readonly, but allow forms editing. In MS Word this can be enabled via the "Restrict Editing" menu. The option is called "Filling in forms" and protects the document, but leaves the Sdt elements (the forms) editable.

Unplanned
Last Updated: 02 Apr 2026 11:12 by Martin Ivanov
It seems that the System.Net.Http package dependency was added because it was required by SharpDX which was used by RadWebCam in older versions of Telerik. After the migration to SkiaSharp the package dependency was no longer needed, but it seems it wasn't removed.

Remove the System.Net.Http package dependency.
Unplanned
Last Updated: 25 Mar 2026 10:00 by Martin Ivanov
Currently, when you insert a content control using TextProperties, CheckBoxProperties, etc., the applied font is the default one for the content controls. Instead, it should use the font of the associated span/paragraph where it was inserted. For example, if you type "Hello world" and set its font size to 36, then place the cursor between "Hello" and "world" and insert a textbox content control there, the font size of the textbox will be something like 10, instead of 36.

Synchronize the font properties and make sure that the content control uses same font as the existing paragraph/span.
Unplanned
Last Updated: 17 Mar 2026 09:27 by Stenly
Created by: Stenly
Comments: 0
Category: GanttView
Type: Feature Request
0
Introduce an out-of-the-box zooming and panning functionality in the TimeRuler part.
1 2 3 4 5 6