Completed
Last Updated: 10 Jul 2025 16:36 by ADMIN
ADMIN
Created by: Pavel R. Pavlov
Comments: 1
Category: TileView
Type: Feature Request
0
If a RadTileViewItem hosts several controls (e.g. Buttons, RadioButtons) users should be able to change the focused element using arrow keys.
Unplanned
Last Updated: 10 Jul 2025 13:38 by ADMIN
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: 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: 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.
Completed
Last Updated: 17 Jun 2025 12:40 by ADMIN
Release Release 2025.2.521 (2025 Q2)
Created by: Martin Ivanov
Comments: 4
Category: UI for WPF
Type: Feature Request
6

Telerik assemblies needs to be rebuild with a specific key in some redistribution scenarios, so that the assemblies can be bound only to a single WPF application. This is described in the following article: https://docs.telerik.com/devtools/wpf/licensing/protecting-telerik-assembly

Currently, to protect the dlls you need to rebuild the entire source code of Telerik UI for WPF. Sometimes this is not very convenient and it is prompt to errors because several steps should be followed and also few prerequisites should be met.

Consider providing a new mechanism to protect the Telerik assemblies, which is more convenient and gives better protection. 

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: 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: 03 Jun 2025 09:32 by Martin Ivanov
Currently, RadPdfViewer doesn't allow you to render notes/comments added to the highlight annotations. Add the option to render this and possibly allow editing. 
Unplanned
Last Updated: 26 May 2025 18:34 by ADMIN
ADMIN
Created by: Kalin
Comments: 6
Category: ComboBox
Type: Feature Request
10
Currently filtering with virtualized RadComboBox is not supported as the filtering feature works with the containers (changes their Visibility).
Completed
Last Updated: 21 May 2025 07:52 by ADMIN
Release 2025.2.521 (2025 Q2)
Add the CellIndex or CellRange of the clicked cell in the HyperlinkClicked event arguments (HyperlinkClickedEventArgs).
Completed
Last Updated: 21 May 2025 07:52 by ADMIN
Release 2025.2.521 (2025 Q2)
Created by: Stenly
Comments: 2
Category: Map
Type: Feature Request
1
Add language property support for AzureMapProvider

Workaround:
Create a custom provider with a custom source, and on the GetTile method of the custom source, you can override the query to contain the language parameter.
Completed
Last Updated: 21 May 2025 07:52 by ADMIN
Release 2025.2.521 (2025 Q2)
Currently, the HyperlinkClicked event of RadWorksheetEditor is raised only for external hyperlinks (web and mailto addresses). Raise the event also for links pointing to the a cell in the same document.
Completed
Last Updated: 21 May 2025 07:52 by ADMIN
Release 2025.2.521 (2025 Q2)
Having a table, for example, with empty cells, executing the TabBackwardsCommand does not move the caret to the previous cell of the row.
Completed
Last Updated: 21 May 2025 07:52 by ADMIN
Release 2025.2.521 (2025 Q2)
ADMIN
Created by: Martin
Comments: 0
Category: Spreadsheet
Type: Feature Request
5
Returns a Range object that represents the current region. The current region is a range bounded by any combination of blank rows and blank columns. If we want to be consistent with MS Excel we should implement this property. It is useful for many operations of a region such as filtering(selecting one cell and executing the Filter command should apply it to the current region), sorting, selecting all and etc. This document will be useful: https://docs.microsoft.com/en-us/office/vba/api/excel.range.currentregion.
Unplanned
Last Updated: 20 May 2025 07:17 by Martin Ivanov

Currently, if you create a custom DraggingService of RadDiagram and override the drag methods (StartDrag, Dragging, etc.), the corresponding drag events stop reporting if you don't call the base method implementation. Add protected methods like OnDragging and OnStartDrag that raise the corresponding events. This will allow the developer to manually raise the events if the drag method overrides are implemented from scratch, without calling the base implementation.

In the meantime, you can use custom events like so:

public class CustomDraggingService : DraggingService
{
    public event EventHandler<PositionChangedEventArgs> CustomDraggingEvent;


    public CustomDraggingService(IGraphInternal graph) : base(graph)
    {
    }

    public override void Drag(Point newPoint)
    {
        CustomDraggingEvent?.Invoke(this, new PositionChangedEventArgs(new Point(), newPoint, null));
// custom implementation here
    }
}

Unplanned
Last Updated: 16 May 2025 06:18 by Jonas
Introduce support for sorting columns that contain merged cells. 
1 2 3 4 5 6