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.
Unplanned
Last Updated: 19 Mar 2026 09:13 by ADMIN
Created by: Theo
Comments: 1
Category: Accordion
Type: Bug Report
0

When setting border color and thickness, border does not appear. 

 

Based on the image in the docs there was a border around the item: https://www.telerik.com/maui-ui/documentation/assets/07d35df8dddf6c3fbf60d2ef61684b1e/accordion-accordionitem.png 

Unplanned
Last Updated: 13 Mar 2026 10:21 by Tony

When having filtering enabled and selecting an item from the dropdown, then deleting a character from the input area, then opening the dropdown and tapping on the selected item in the drop-down, the text in the input area does not update with the selected item.

You have to select another item, then text updates!

Unplanned
Last Updated: 12 Mar 2026 12:37 by ADMIN
If the ComboBox (or AutoComplete) is placed inside a ScrollView, scrolling through the page, the dropdown keeps the same position with the scroll and away from the combo (autocomplete).
Unplanned
Last Updated: 11 Mar 2026 07:00 by GSI - Technical Support
Created by: GSI - Technical Support
Comments: 0
Category: Scheduler
Type: Feature Request
1

Provide screen reader support for scheduler.

Duplicated
Last Updated: 06 Mar 2026 08:08 by ADMIN
Created by: Kyle
Comments: 1
Category: UI for .NET MAUI
Type: Feature Request
8

Right to left flow direction completely breaks the RadDataGrid on Android and on iOS it doesn't seem to do anything.

Repro steps:

Android:

  1. Download project from github: Kbperri/RadDataGridBug
  2. Run the app on an Android device
  3. See that the DataGrid is showing up
  4. Click the "Click me" button which sets the FlowDirection
  5. See that the DataGrid disappears
  6. Click the button again and it appears again

iOS:

  1. Download project from github: Kbperri/RadDataGridBug
  2. Run the app on an iOS device
  3. See that the DataGrid is showing up
  4. Click the "Click me" button which sets the FlowDirection
  5. See that the DataGrid doesn't change direction

If you test this on Windows, the FlowDirection is being appropriately applied.

Android LTR:

RTL:

Unplanned
Last Updated: 02 Mar 2026 16:04 by Neil N
When RadCheckbox is inside a virtualized control's ItemTemplate (e.g. CollectionView) it displays wrong value.
Unplanned
Last Updated: 27 Feb 2026 11:38 by ADMIN

I have TabView which contains multiple tabs and tabs contains ScrollView with multiple entry elements.

After click on entry keyboard on android in the first tab, the content moves so you can see what to type in the input.

For all other tabs, the keyboard covers the entry.

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

1 2 3 4 5 6