Completed
Last Updated: 19 Mar 2026 13:31 by ADMIN
Release 13.1.0
We need an API through which we can get the currently visible in the viewport items. The API should take into account operations like sorting, filtering and grouping.
Completed
Last Updated: 19 Mar 2026 13:30 by ADMIN
Release 13.1.0
Created by: Andrey
Comments: 3
Category: CollectionView
Type: Feature Request
4
The RadListView provides ItemHold event, also a Selection Gestures for tap and hold, expose similar for the RadCollectionView
Completed
Last Updated: 19 Mar 2026 11:15 by ADMIN
Release 13.1.0

Last label on the x axis is clipped, when the y axis is right positioned and x axis plot mode is on ticks.

Completed
Last Updated: 19 Mar 2026 11:15 by ADMIN
Release 13.1.0

Description:

On iOS and MacCatalyst, when a RadButton is placed inside a RadToggleButton's ContentTemplate and bound to a command, the command does not execute when the nested button is tapped. The same setup works as expected on Windows and Android.

Workaround:

Override the toggle button's handler to adjust gesture recognizer behavior so that touches on the nested UIButton are not intercepted by the parent RadToggleButton.

private void Element_OnHandlerChanged(object? sender, EventArgs e)
    {
#if IOS || MACCATALYST
        var button = sender as RadToggleButton;
        var handler = button!.Handler;
        if (handler != null && handler.PlatformView is UIKit.UIView platformView)
        {
            this.Dispatcher.Dispatch(() =>
            {
                var recognizer = platformView.GestureRecognizers!.Last();
                recognizer.ShouldReceiveTouch = (gestureRecognizer, touch) =>
                {
                    var view = touch.View;
                    if (view is UIButton)
                    {
                        return false;
                    }

                    return true;
                };
            });
        }
#endif
    }

Completed
Last Updated: 19 Mar 2026 11:15 by ADMIN
Release 13.1.0
When having a DataGrid with DataPager and going on the second page, the DataGrid keyboard navigation does not work as expected. The keyboard navigation works only on the first page.
Completed
Last Updated: 19 Mar 2026 11:13 by ADMIN
Release 13.1.0

Having the following code:

    <telerik:RadCollectionView
            x:Name="configurationsCollectionView"
            BackgroundColor="Green"
            ItemsSource="{Binding Configurations}">
        <telerik:RadCollectionView.ItemTemplate>
            <DataTemplate>
                <Grid>
                    <Grid.ColumnDefinitions>
                        <ColumnDefinition Width="Auto" />
                        <ColumnDefinition Width="*" />
                    </Grid.ColumnDefinitions>
                    <Label
                            Grid.Column="0"
                            BackgroundColor="Blue"
                            Text="Test 123" />
                    <Label
                            Grid.Column="1"
                            BackgroundColor="Red"
                            Text="Test 456" />
                </Grid>
            </DataTemplate>
        </telerik:RadCollectionView.ItemTemplate>
    </telerik:RadCollectionView>

when rotating the device, the control does not size correctly its item template

 

 

 

Completed
Last Updated: 19 Mar 2026 11:13 by ADMIN
Release 13.1.0
A TaskCanceledException is thrown when scrolling while auto-scroll is in progress.
Completed
Last Updated: 19 Mar 2026 11:13 by ADMIN
Release 13.1.0
when having the RichTextEditor toolbar in a shell app that targets net 10, when the keyboard appears, the toolbar disappears. 
Completed
Last Updated: 19 Mar 2026 11:13 by ADMIN
Release 13.1.0
When the PDF Viewer is inside Flyout page, you cannot scroll through the document, also swipe does not work.
Completed
Last Updated: 19 Mar 2026 11:13 by ADMIN
Release 13.1.0
When having a TreeView inside SlideView content, cannot change the slides using pan gesture
Completed
Last Updated: 19 Mar 2026 11:13 by ADMIN
Release 13.1.0
When ListenForNestedPropertyChange is true and scrolling or resizing the window, the InvalidOperationException occurs. 
Completed
Last Updated: 19 Mar 2026 11:13 by ADMIN
Release 13.1.0
When using cell editor template and editing the cell, and at some point exits the view port, to start editing another cell this makes the content of the previous cell to disappear.
Completed
Last Updated: 20 Feb 2026 08:59 by ADMIN
Release 13.0.1

when building an app without explicitly setting the target platform, the following error appears:

The type or namespace name 'Compatibility' does not exist in the namespace 'Telerik.Maui.Controls' (are you missing an assembly reference?)

The Telerik.Maui.Controls.Compatibility dll is missing from the .net9/10 shared folders

Completed
Last Updated: 11 Feb 2026 10:40 by ADMIN
Release 13.0.0 (2026 Q1)
Created by: Larry
Comments: 6
Category: Entry
Type: Feature Request
27

I'm looking to replace the Xamarin RadRichTextEditor control in my Maui app. The Maui native Editor control is good but doesn't scroll.

And to be honest, the RadRichTextEditor gave me more trouble than it was worth (I loved the functionality, but it wasn't a good fit for my implementation).

So, adding the appropriate support to RadEntry to make it more of a 'multiline text editor' or even a 'mini word processor' would be awesome.

Completed
Last Updated: 11 Feb 2026 09:39 by ADMIN
Release 13.0.0 (2026 Q1)

Keyboard navigation to editable cells does not retain text selection. Having the SelectionOnFocus to “SelectAll” and the cell is in edit mode, the text gets selected

pressing enter or tab key, the text in the next cell is not selected.

I have tried implicit style, cell edit templates, same result, text gets deselected.

Completed
Last Updated: 11 Feb 2026 09:39 by ADMIN
Release 13.0.0 (2026 Q1)

When having the android:supportsRtl="false" in the AndroidManifest file, the today and selected date text moves up

 

Solution:

set the property to true.

Completed
Last Updated: 11 Feb 2026 09:39 by ADMIN
Release 13.0.0 (2026 Q1)

When the numerical column enters edit mode, in order to display the keyboard you need to tap one more time.

Outside of the datagrid, when the numeric input control gets focused, the keyboard appears.

Completed
Last Updated: 11 Feb 2026 09:39 by ADMIN
Release 13.0.0 (2026 Q1)

Hyperlink dialog doesn't display on currently active window in multi-window scenario

 

 

Completed
Last Updated: 17 Dec 2025 13:58 by ADMIN
Release 12.1.0

Null reference exception occurs when measuring the cells container:

at Telerik.Maui.Controls.DataGrid.DataGridTextCellArranger.PrepareContainerForItemOverride(GridCellModel model)
   at Telerik.Maui.Controls.DataGrid.DataGridNumericalCellArranger.PrepareContainerForItemOverride(GridCellModel model)
   at Telerik.Maui.Controls.DataGrid.DataGridColumn.Telerik.Maui.Controls.DataGrid.IDataGridColumnDefinition.PrepareContainerForItem(GridCellModel model)
   at Telerik.Maui.Controls.DataGrid.CellsController`1.GenerateCellsForRow(IItemInfoNode rowModel, Int32 rowSlot)
   at Telerik.Maui.Controls.DataGrid.NodePool`2.GenerateModelsForInfos(IList`1 itemInfos, ModelGenerationContext modelGenerationContext, MeasureContext measureContext)
   at Telerik.Maui.Controls.DataGrid.NodePool`2.MeasureForward(MeasureContext& context)
   at Telerik.Maui.Controls.DataGrid.NodePool`2.MeasureVertically(RadSize availableSize, Double offset, Double verticalBuffer)
   at Telerik.Maui.Controls.DataGrid.NodePool`2.OnMeasure(RadSize availableSize, Double offset, Double verticalBuffer)
   at Telerik.Maui.Controls.DataGrid.GridModel.MeasureCells(RadSize availableSize)
   at Telerik.Maui.Controls.DataGrid.DataGridContentLayout.Measure(Double widthConstraint, Double heightConstraint)
   at Microsoft.Maui.Platform.MauiPanel.MeasureOverride(Size availableSize)
   at ABI.Microsoft.UI.Xaml.IFrameworkElementOverrides.Do_Abi_MeasureOverride_0(IntPtr thisPtr, Size availableSize, Size* result)

Completed
Last Updated: 17 Dec 2025 13:53 by ADMIN
Release 12.1.0

when setting Telerik PlatformDark and PlatformLight themes, the DataPager_PageSizesView_LabelText  localization string of the DataPager does not apply. 

 

Workaround: Use the Telerik themes

1 2 3 4 5 6