Unplanned
Last Updated: 30 Jun 2025 12:13 by Stephen
A scenario with a requirement to display information about the entire group, including recursively all child groups, needs access to the actual items and/or subgroups. Exposing these and parent info would allow for greater flexibility in displaying custom information in group headers.
Unplanned
Last Updated: 27 Jun 2025 09:23 by Teddy
Currently, the PropertyGroupDescriptor in the DataGrid component does not support grouping by nested properties (e.g., Customer.Address.City). Enhance the PropertyGroupDescriptor to support nested property paths, allowing developers to group data based on sub-properties within complex objects. This would align with common data-binding patterns and improve the flexibility of the DataGrid for real-world scenarios involving nested data models.
Unplanned
Last Updated: 26 Jun 2025 21:46 by Volodymyr
Created by: Paul
Comments: 1
Category: DataGrid
Type: Feature Request
3
I would like to use a mouse to drag a row to a new spot in row order.

Found this info for WinForms, but not finding anything for MAUI RadDataGrid

https://docs.telerik.com/devtools/winforms/knowledge-base/gridview-drag-drop-bound-mode 

https://docs.telerik.com/devtools/winforms/controls/gridview/end-user-capabilities/reordering-rows 
Declined
Last Updated: 20 Jun 2025 08:18 by ADMIN
Created by: Hanoch
Comments: 2
Category: UI for .NET MAUI
Type: Feature Request
1
Provide a copyright label control for .NET MAUI. 

For example Telerik UI for WinForms introduced such control for the RadMap. For MAUI it could be nice to have such control in general
Unplanned
Last Updated: 20 Jun 2025 08:04 by Yadagiri
Created by: Yadagiri
Comments: 0
Category: TreeDataGrid
Type: Feature Request
0
Please add support for multiple row column headers. As an example of what I'm referring to, see the Telerik UI for Blazor implementation here => Blazor DataGrid Demos - Multi-Column Headers | Telerik UI for Blazor
Unplanned
Last Updated: 18 Jun 2025 04:59 by Sunil

In MAUI CollectionView when scrolling an item into view, the exact position of the item after the scroll has completed can be specified with the position argument of the ScrollTo methods.

Please provide such option for Telerik MAUI CollectionView inside the ScrollItemIntoView method.

Unplanned
Last Updated: 17 Jun 2025 06:39 by Hanoch
Created by: Hanoch
Comments: 0
Category: PDFViewer
Type: Feature Request
1
Define tooltip text for toolbar items similar to ImageEditor and RichTextEditor
Unplanned
Last Updated: 16 Jun 2025 11:59 by Hanoch
Created by: Hanoch
Comments: 0
Category: UI for .NET MAUI
Type: Feature Request
1
Build template for project with navigation: like menu, flyout.

It will help user to get started.


Unplanned
Last Updated: 09 Jun 2025 08:19 by Hanoch
Created by: Didi
Comments: 1
Category: UI for .NET MAUI
Type: Feature Request
1

Provide an AI assistant for code generation with the Telerik MAUI controls. 

Telerik Blazor released such assistant https://www.telerik.com/blazor-ui/documentation/ai/overview 

Unplanned
Last Updated: 05 Jun 2025 11:25 by Hanoch
Created by: Hanoch
Comments: 0
Category: TreeView
Type: Feature Request
1

Provide a search option in the TreeView similar as in the DataGrid. 

When searching on loaded data it will highlight the items(folders, files) like in data grid.

I think filter is a separate feature that to implement together.

Take into account when filtering not to loose the selections that user done and can remove during the filter process from collection view.
Unplanned
Last Updated: 04 Jun 2025 13:06 by John
Created by: John
Comments: 0
Category: Calendar
Type: Feature Request
14
provide support for right to left flow direction. 
Completed
Last Updated: 03 Jun 2025 13:50 by ADMIN
Release 11.0.0 (2025 Q2)
Created by: Rich
Comments: 1
Category: DataGrid
Type: Feature Request
1
In the current DataGrid implementation, the DataGrid will start with all the groups expanded. The only way to have any form of preference is to programmatically interact with the DataView after data is presented in the control  https://docs.telerik.com/devtools/maui/controls/datagrid/grouping/expand-collapse 

Requested Feature
A better approach that I am requesting a feature for is to have a property available for the DataGrid that sets this value ahead of time.

For example, you could add it as a BindableProperty on the GroupDescriptor class and on the GroupDefinition is to have an IsExapanded property.
Completed
Last Updated: 30 May 2025 10:05 by ADMIN
Release 11.0.0 (2025 Q2)
Created by: Funny
Comments: 4
Category: UI for .NET MAUI
Type: Feature Request
31
Currently Telerik MAUI controls doesn't seem to support Light and Dark Themes(Modes). It will be really helpful to have this feature built in the controls or through styles supported by those controls so that these controls blend in nicely with the Light and Dark Themes supported by the app.
Unplanned
Last Updated: 21 May 2025 11:56 by ADMIN
Created by: JOHN
Comments: 1
Category: Chat (Conversational UI)
Type: Feature Request
0
Provide an option to attach images also exchange images in the chat
Completed
Last Updated: 21 May 2025 10:56 by ADMIN
Release 11.0.0 (2025 Q2)
Created by: Sanket
Comments: 2
Category: DataGrid
Type: Feature Request
8
Provide a RowStyleSelector property to the DataGrid control.
Completed
Last Updated: 21 May 2025 10:53 by ADMIN
Release 11.0.0 (2025 Q2)
Created by: Taylor
Comments: 3
Category: CollectionView
Type: Feature Request
7
Provide keyboard navigation support for CollectionView
Completed
Last Updated: 21 May 2025 10:51 by ADMIN
Release 11.0.0 (2025 Q2)
Created by: Matthew
Comments: 4
Category: CollectionView
Type: Feature Request
7

Add support for sticky group headers (iOS, Android)

This feature is available in the ListView control. E.g. On iOS using the built-in CollectionView it can be added this way:

public class CollectionViewPlatformHandler : CollectionViewHandler { /// <inheritdoc /> protected override ItemsViewLayout SelectLayout() { var layout = base.SelectLayout(); if (ItemsView.IsGrouped && layout is UICollectionViewFlowLayout flowLayout) { // Enable sticky section headers. flowLayout.SectionHeadersPinToVisibleBounds = true; } return layout; } }

Add support for scrollable index titles (iOS).

This feature is available in the ListView control. E.g. On iOS using the built-in CollectionView it can be added this way:

    public class CollectionViewPlatformHandler : CollectionViewHandler
    {
        /// <inheritdoc />
        protected override UIView CreatePlatformView()
        {
            var platformView = base.CreatePlatformView();
            if (ItemsView.IsGrouped && ItemsView.ItemsSource is IEnumerable<IGrouping<string, object>> groups && platformView.Subviews[0] is UICollectionView collectionView)
            {
                // Enable index titles.
                collectionView.DataSource = new GroupedCollectionViewDataSource(collectionView.DataSource, groups.Select(q => q.Key));
            }

            return platformView;
        }
        
        private class GroupedCollectionViewDataSource(IUICollectionViewDataSource datasource, IEnumerable<string> sections) : UICollectionViewDataSource
        {
            public override nint NumberOfSections(UICollectionView collectionView) => datasource.NumberOfSections(collectionView);
            public override nint GetItemsCount(UICollectionView collectionView, nint section) => datasource.GetItemsCount(collectionView, section);
            public override UICollectionViewCell GetCell(UICollectionView collectionView, NSIndexPath indexPath) => datasource.GetCell(collectionView, indexPath);
            public override UICollectionReusableView GetViewForSupplementaryElement(UICollectionView collectionView, NSString elementKind, NSIndexPath indexPath) => datasource.GetViewForSupplementaryElement(collectionView, elementKind, indexPath);
            public override string[] GetIndexTitles(UICollectionView collectionView) => sections.ToArray();
        }
    }
 

Note: This is available out-of-the-box on iOS 14 and above for a native UICollectionView. See documentation.

https://developer.apple.com/documentation/uikit/uicollectionviewdatasource/2851455-indextitlesforcollectionview

Unplanned
Last Updated: 21 May 2025 10:50 by Didi
Created by: Didi
Comments: 0
Category: CollectionView
Type: Feature Request
1
Add support for sticky group headers for desktop - WinUI and MacCatalyst. 
Declined
Last Updated: 21 May 2025 08:48 by ADMIN
Created by: Greg
Comments: 1
Category: UI for .NET MAUI
Type: Feature Request
0

Hello,

Is it planned to eventually ensure that platform theme changes at runtime properly convert controls over from light to dark and vice versa? Currently in Windows and Android (all that I tested so far), the controls either remain dark when changing to the light theme or end up in a sort of half and half state and don't completely change to the appropriate theme during runtime. If the app is closed and reopen, they are rendered properly.

Thank you

Completed
Last Updated: 21 May 2025 08:37 by ADMIN
Release 11.0.0 (2025 Q2)
Created by: Daniel
Comments: 15
Category: UI for .NET MAUI
Type: Feature Request
29
Introduce a theme for all controls in the suite.
1 2 3 4 5 6