In Development
Last Updated: 06 Mar 2026 12:40 by ADMIN
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.
In Development
Last Updated: 06 Mar 2026 11:31 by ADMIN
when having the RichTextEditor toolbar in a shell app that targets net 10, when the keyboard appears, the toolbar disappears. 
In Development
Last Updated: 26 Feb 2026 09:03 by ADMIN
When the PDF Viewer is inside Flyout page, you cannot scroll through the document, also swipe does not work.
In Development
Last Updated: 19 Feb 2026 10:31 by ADMIN

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

In Development
Last Updated: 19 Feb 2026 07:36 by ADMIN

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
    }

In Development
Last Updated: 13 Feb 2026 12:10 by ADMIN
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.