Unplanned
Last Updated: 10 Apr 2026 09:43 by ADMIN
when setting a custom palette, the xy grid lines are not visible on Android
Unplanned
Last Updated: 09 Apr 2026 08:31 by Lance

having a combobox inside the collectionview, click on the combo to open, then click again on the same location where you clicked to open the combo and exception occurs.

this is the stack trace: 

 at WinRT.ExceptionHelpers.<ThrowExceptionForHR>g__Throw|38_0(Int32 hr)
   at ABI.Microsoft.UI.Input.IGestureRecognizerMethods.ProcessDownEvent(IObjectReference _obj, PointerPoint value)
   at Microsoft.UI.Input.GestureRecognizer.ProcessDownEvent(PointerPoint value)
   at Telerik.Maui.NativeGestureRecognizer.HoldGestureRecognizer_PointerPressed(Object sender, PointerRoutedEventArgs e)
   at ABI.Microsoft.UI.Xaml.Input.PointerEventHandler.Do_Abi_Invoke(IntPtr thisPtr, IntPtr sender, IntPtr e)

 

Unplanned
Last Updated: 08 Apr 2026 08:00 by Garry
when using sticky group headers and adding removing items, to the control, the items.count in the sticky header do not update. You have to scroll the control, expand/collapse the group so the item count to be updated. 
Unplanned
Last Updated: 03 Apr 2026 12:08 by Teddy

when trying to display data using the trackball, the tooltip is clipped on left at chart start: 

Unplanned
Last Updated: 03 Apr 2026 11:41 by Teddy

when having a chart with horizontal datetime axis and trackball behavior, the first and last points are not displayed in the trackball

when using categorical axis, the last point displays in the tooltip, but the first point does not.

Unplanned
Last Updated: 02 Apr 2026 17:11 by Calin

Items do not display after scrolling, navigating to another page, and returning to the page. 

You have to scroll or resize the window and the items appear

Unplanned
Last Updated: 02 Apr 2026 13:45 by ADMIN

from 11.1.0 version and above the behavior of dropping item changes for my custom scenario.

I have two CollectionView's. one on left has inner collectionview, and one on right. When the inner collectionview has no items, dropping item from the right collectionview to the collectionview with no data cannot be achieved. 

The height of the inner collectionview with no items is 0. 

This works in 11.0.0 version but after 11.1.0 the behavior changes and item cannot be dropped.

In Development
Last Updated: 01 Apr 2026 15:04 by ADMIN
  1. click the "Search"-Icon
  2. type for example "simple" to have 1 hit
  3. close search
  4. click the "Search"-Icon again
  5. Crash occurs

Stack trace

--- Message ---
Object reference not set to an instance of an object.
 
--- Stacktrace ---
   at Telerik.Maui.Controls.PdfViewer.PdfViewerSearchEntryToolbarItemView.SearchEntry_TextChanged(Object sender, TextChangedEventArgs e)

In Development
Last Updated: 01 Apr 2026 11:45 by ADMIN
When a monospace font is applied to cells, the cell content does not align as expected. Instead of maintaining consistent horizontal alignment typical of monospace typefaces (where each character occupies equal width), the text appears misaligned or uneven across cells.
Unplanned
Last Updated: 27 Mar 2026 08:45 by ADMIN

when having a document with a text fragment with a transparency, the transparency is not respected. the full color is displayed.

Unplanned
Last Updated: 25 Mar 2026 13:50 by Frank
For example having a document with 660 pages and searching a word, when the search feature iterates over all pages at some point the app terminates. 
In Development
Last Updated: 24 Mar 2026 14:05 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 

In Development
Last Updated: 24 Mar 2026 13:45 by ADMIN

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: 24 Mar 2026 11:36 by BDR-Dev
Created by: BDR-Dev
Comments: 0
Category: Chat (Conversational UI)
Type: Bug Report
9
The `RadChat` control is pushed completely off-screen when the soft keyboard appears on iOS devices/emulators only. 

The chat message history becomes invisible and inaccessible to the user while the keyboard is open. 
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. 
1 2 3 4 5 6