Completed
Last Updated: 02 Jul 2025 12:33 by ADMIN

the text in the spinner wraps when scrolling the spinner. 

The issue happens in Time, TimeSpan, Date and DateTime pickers with day, month, hour spinners. 

The issue happens in maui 9.0.60 and 9.0.70 versions.

It works with maui 9.0.50 and lower versions 

Completed
Last Updated: 09 Jun 2025 09:07 by ADMIN
Release 8.0.0
We have an Android device with a scanner. The scanner acts as a keyboard wedge and auto types the scanned item (barcode, tags etc.) into the Entry control and simulates the Enter Key being pressed in the background to execute the Completed event. With the .NET MAUI Entry the Completed event is fired, while with Telerik .NET MAUI Entry (RadEntry), the Completed event is not raised.
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.
Completed
Last Updated: 21 May 2025 13:17 by ADMIN
Release 11.0.0 (2025 Q2)

When using Telerik controls, I got the following warning:

 Not linking with the framework OpenGLES referenced by a module reference in SkiaSharp.Views.iOS.dll

when I add a SkiaSharp 3.116.1 version to the project, the warning disappear.

Please update the SkiaSharp package reference in the Telerik MAUI NuGet package

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

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.
Completed
Last Updated: 21 May 2025 08:09 by ADMIN
Release 11.0.0 (2025 Q2)
Null Ref Exception occurs when calling ScrollItemIntoView at the time when navigating away from the page. 
Completed
Last Updated: 21 May 2025 08:09 by ADMIN
Release 11.0.0 (2025 Q2)
When setting the header item style as implicit style for example in the Styles.xaml folder, crash occurs on WinUI, on android the control does not display
Completed
Last Updated: 21 May 2025 08:09 by ADMIN
Release 11.0.0 (2025 Q2)

I would like to draw attention to this at an early stage.
When using MAUI Nightly 8.0.20-nightly.10376, the app crashes immediately upon startup if you set Telerik Popup Settings in the MAUI Styles

See min repro example https://github.com/baaaaif/MauiNightlyCrash

<MauiVersion>8.0.20-nightly.10376</MauiVersion>
<Style TargetType="telerik:RadTimePicker">
    <Setter Property="PopupSettings">
        <Setter.Value>
            <telerik:PickerPopupSettings IsHeaderVisible="False" />
        </Setter.Value>
    </Setter>
</Style>

From the inner Exception...:

NameValueType
â—¢InnerException{"Object reference not set to an instance of an object."}System.Exception {System.NullReferenceException}

at Microsoft.Maui.Controls.AppThemeBinding.AppThemeProxy..ctor(Element parent, AppThemeBinding binding) at Microsoft.Maui.Controls.AppThemeBinding.Apply(Object context, BindableObject bindObj, BindableProperty targetProperty, Boolean fromBindingContextChanged, SetterSpecificity specificity) at Microsoft.Maui.Controls.BindableObject.SetBinding(BindableProperty targetProperty, BindingBase binding, SetterSpecificity specificity) at Microsoft.Maui.Controls.BindableObject.SetBinding(BindableProperty targetProperty, BindingBase binding) at Microsoft.Maui.Controls.BindableObjectExtensions.SetAppTheme[T](BindableObject self, BindableProperty targetProperty, T light, T dark) at Microsoft.Maui.Controls.BindableObjectExtensions.SetAppThemeColor(BindableObject self, BindableProperty targetProperty, Color light, Color dark) at Telerik.Maui.Controls.PickerPopupSettings.OnPopupOutsideBackgroundColorPropertyChanged(Color color) at Telerik.Maui.Controls.PickerPopupSettings..ctor() at System.RuntimeType.CreateInstanceDefaultCtor(Boolean publicOnly, Boolean wrapExceptions)


Completed
Last Updated: 21 May 2025 08:09 by ADMIN
Release 11.0.0 (2025 Q2)

Text is not centered horizontally on WinUI. 

on maui 9.0.50 text is not visible and hiding the ClearButton does not work

on maui 9.0.40 text is not centered but hiding the ClearButton works

 

Completed
Last Updated: 21 May 2025 08:09 by ADMIN
Release 11.0.0 (2025 Q2)

when adding entry to the page a margin is added. The space between the Entry and other controls is significant: 

this is a sample xaml:

	<VerticalStackLayout>
		<telerik:RadEntry  x:Name="entry" Placeholder="telerik entry" BackgroundColor="AntiqueWhite" />
		<telerik:RadEntry x:Name="myentry" Placeholder="telerik entry" BackgroundColor="AntiqueWhite" />
		<Entry Placeholder="maui entry" BackgroundColor="LightBlue"/>
		<Entry Placeholder="maui entry" BackgroundColor="LightBlue"/>
	</VerticalStackLayout>

 

this is the result:

 

Completed
Last Updated: 21 May 2025 08:09 by ADMIN
Release 11.0.0 (2025 Q2)
When DataGrid is grouped and applying filtering, aggregates footer appears in the cells
Completed
Last Updated: 21 May 2025 08:09 by ADMIN
Release 11.0.0 (2025 Q2)

Some data is missing from the UI when grouping is applied and then filter the data. 

If you ungroup, the items are displayed.

Completed
Last Updated: 21 May 2025 08:08 by ADMIN
Release 11.0.0 (2025 Q2)

Starting with v10, all groups except the last, get a blank, empty row.

If you toggle off the grouping, the empty rows go away, but once you put the grouping on, these empty rows show up again.

Completed
Last Updated: 21 May 2025 08:08 by ADMIN
Release 11.0.0 (2025 Q2)
Setting the ItemViewStyle to have a Margin of any value greater than zero makes the items height to increase continuously when scrolling. 
Completed
Last Updated: 21 May 2025 08:08 by ADMIN
Release 11.0.0 (2025 Q2)

Keep the data grouped, make the window a bit smaller so you have a decent amount of rows to scroll through, and using your mouse wheel, scroll up and down quickly. Eventually you'll notice that the grid will start to bounce a bit. For example, you'll scroll down and then without scrolling the mouse wheel up at all, it'll jump back up a few rows on its own.

Completed
Last Updated: 21 May 2025 08:08 by ADMIN
Release 11.0.0 (2025 Q2)

Begin editing the first cell firs column
Without closing the cell editor, scroll down to the last cell, the first cell should exit the viewport.
Start editing the last cell.
Scroll back up to the first cell

The content inside the first cell is missing.

The content should be there.

1 2 3 4 5 6