Unplanned
Last Updated: 17 Jan 2023 12:49 by ADMIN
ADMIN
Created by: Yoan
Comments: 0
Category: UI for .NET MAUI
Type: Feature Request
1
Add Chip control for .NET MAUI
Unplanned
Last Updated: 16 Dec 2022 08:02 by Aaron
Created by: Aaron
Comments: 0
Category: UI for .NET MAUI
Type: Feature Request
1
Add a HeatMap control for .NET MAUI
Unplanned
Last Updated: 11 Jul 2023 11:57 by ADMIN
Created by: Tuah
Comments: 1
Category: UI for .NET MAUI
Type: Feature Request
1
Having scrollable horizontal datepicker like in the attached picture, that able to scroll to the left (previous date) or to the right (next day) is nice addition. I find its already availabe in Flutter, React, Angular etc.  Looking forward for The Telerik Devs to make it happen. Thank You.
Unplanned
Last Updated: 06 Feb 2024 10:38 by ADMIN
Created by: Hanoch
Comments: 1
Category: UI for .NET MAUI
Type: Feature Request
1
Unplanned
Last Updated: 22 Jun 2023 11:25 by ADMIN

Hello,

it would be a very useful information when subscribing to the DataBindingComplete Command of a DataGrid to know whether for example a filter, sort, grouping had changed.

Currently, it is an internal Property

    public class DataBindingCompleteEventArgs : EventArgs
    {
        public IDataViewCollection DataView { get; internal set; }

        internal DataChangeFlags ChangeFlags { get; set; }

        internal DataBindingCompleteEventArgs()
        {
        }
    }

Regards

Unplanned
Last Updated: 30 May 2024 12:53 by Andrew
Created by: Andrew
Comments: 0
Category: UI for .NET MAUI
Type: Feature Request
1
It should provide a way to set its size or wrap the text.
Unplanned
Last Updated: 20 Jun 2022 13:04 by Wayne
Created by: Wayne
Comments: 0
Category: UI for .NET MAUI
Type: Feature Request
1
A MAUI project with Blazor and the Telerik Blazor and MAUI runtime ready to go in the Visual Studio Project?
Unplanned
Last Updated: 14 Feb 2022 07:57 by ADMIN
Created by: JeffSM
Comments: 3
Category: UI for .NET MAUI
Type: Feature Request
1

Hello,

The RadPanorama from WinForms is very welcome in .NET MAUI.

It's a flexible UI and a powerful way to manage information.

Thanks in advance,

Jefferson Motta

Unplanned
Last Updated: 27 Sep 2023 14:20 by Scott

Currently the SuggestionView does not stay open all the time

I can get it to open on focus by running this code and attaching it to the Focused event

    Focused += SupporterAutoCompleteSearchBar_Focused;

    private void SupporterAutoCompleteSearchBar_Focused(object sender, FocusEventArgs e)
    {
        ShowSuggestions();
    }
 but if I type in the search bar, like a letter "a", and then backspace to get rid of it so I'm left with an empty string, the SuggestionView disappears. The SuggestionView also disappears if I assign a new list, such as through the Remote Search feature in the documentation while the search text is an empty string. I have gotten around these two issues by adding a dispatcher that will call ShowSuggestions(); after 100 milliseconds but I get this flicker effect where the SuggestionView disappears and then comes back again. It's very jarring.

I have looked in the decompiled RadAutoComplete class in visual studio and it looks like the code is set up so the SuggestionView disappears when the Text is null or empty. I would like a bindableproperty for this control that always keeps the SuggestionView open or a workaround that doesn't cause the SuggestionView to disappear in the above circumstances
Unplanned
Last Updated: 24 Jan 2023 14:28 by ADMIN

Popup:

Calling

IsOpen = true,
IsOpen = false,
IsOpen = true,
IsOpen = false,

while the last IsOpen update isn't ready, kills the Popup.
It works async, even if animations are set to none/0s and there is no public event to validate the last update is fully done (Popup opened/closed)

In my case i have a popup opened, while a search operation is running in the background.
If this background search returns too fast and i set IsOpen to false, the update is ignored and the popup keeps in an opened state.

Unplanned
Last Updated: 25 Jan 2023 06:54 by Tavi
Created by: Tavi
Comments: 0
Category: UI for .NET MAUI
Type: Feature Request
0
Provide Callout control for mobile and desktop, similar to wpf control.
Unplanned
Last Updated: 25 Jan 2023 07:02 by Tavi
Created by: Tavi
Comments: 0
Category: UI for .NET MAUI
Type: Feature Request
0
provide a timebar control for .net maui
Unplanned
Last Updated: 25 Jan 2023 07:04 by Tavi
Created by: Tavi
Comments: 0
Category: UI for .NET MAUI
Type: Feature Request
0
add task board control similar to wpf control.
Unplanned
Last Updated: 30 Nov 2022 11:14 by Terrell
BackgroundColor property of the CellDecorationStyle of any column overlaps all other colors of the DataGrid.
Unplanned
Last Updated: 25 Jan 2023 08:23 by Tavi
Created by: Tavi
Comments: 0
Category: UI for .NET MAUI
Type: Feature Request
0
Provide a tile list control for .net maui
Unplanned
Last Updated: 25 Jan 2023 08:32 by Tavi
Created by: Tavi
Comments: 0
Category: UI for .NET MAUI
Type: Feature Request
0
Provide a wizard control for .net maui
Unplanned
Last Updated: 05 Nov 2022 18:34 by Sanket

The main navigation menu is not displayed on surface devices. 

The look of the mobile page is displayed. 

Unplanned
Last Updated: 10 Mar 2023 10:24 by ADMIN

Is there a way to retrieve a pixel of the image in the imageEditor when clicking on it

I could implement something working well , but not when the image is zoomed or moved in the editor 

        public static Point Calc_Coordinates(double w_image, double h_image, double w_container, double h_container, double click_x, double click_y) 
        {
            Double zoomW = (w_container / w_image);
            Double zoomH = (h_container / h_image);
            Double zoomActual = Math.Min(zoomW, zoomH);

            Double padX = zoomActual == zoomW ? 0 : (w_container - (zoomActual * w_image)) / 2;
            Double padY = zoomActual == zoomH ? 0 : (h_container - (zoomActual * h_image)) / 2;

            Point res = new Point();

            res.X = (Int32)((click_x - padX) / zoomActual);
            res.Y = (Int32)((click_y - padY) / zoomActual);

            //
            if (res.X < 0 || res.X > w_image) { res.X = -1};
            if (res.Y < 0 || res.Y > h_image) { res.Y = -1};
            return res;
        }
Unplanned
Last Updated: 28 Apr 2023 17:38 by ADMIN
Created by: David
Comments: 3
Category: UI for .NET MAUI
Type: Feature Request
0
Although documentation for RadScrollview appears to exist only in the API, I have found its ability to support both Horizontal and Vertical scrollbars simultaneously quite useful in Windows and Android. Unfortunately it seems to fail in iOS. Can Apple platforms also be supported? Could RadScrollview documentation be added into places other than just the API? Could it be made styleable?
Unplanned
Last Updated: 07 Jun 2024 11:35 by ADMIN
Created by: JoPi
Comments: 1
Category: UI for .NET MAUI
Type: Feature Request
0

Hi,

I wanted to request a feature for the .net maui datagrid.  I would like if it were possible to merge cells across rows when they have the same value.  For example, I use the datagrid to display events and it would be so much more readable if all the events that were on the same day (date) showed the date cell just once merged across a few rows rather than duplicating it multiple times.

Thanks