Completed
Last Updated: 31 Jan 2024 07:55 by ADMIN
Release 6.7.0
Scheduler for .NET MAUI can display appointments in various view definitions - provide the option for the users to add new appointments as well as edit and delete appointments through built-in views.
Duplicated
Last Updated: 25 Oct 2023 08:13 by ADMIN
Created by: Marcel
Comments: 1
Category: UI for .NET MAUI
Type: Feature Request
0

I would love to have an option to display a calendar in the DatePicker date selection popup

 

Best regards,

 

 

Marcel Souza

Pds Informática

Unplanned
Last Updated: 06 Oct 2023 07:57 by Nelson
Created by: Nelson
Comments: 0
Category: UI for .NET MAUI
Type: Feature Request
2
I want to change the clear button icon in RadEntry

For example the RadComBoBox has ClearButtonStyle, while RadEntry has separate properties for clear button color, hover: https://docs.telerik.com/devtools/maui/controls/entry/styling#clear-button-style and no text property
Unplanned
Last Updated: 11 Oct 2023 11:23 by ADMIN
Created by: Claudio
Comments: 1
Category: UI for .NET MAUI
Type: Feature Request
2
It would be glad to have a SplitButton component as done in Blazor.
Completed
Last Updated: 03 Oct 2023 08:03 by ADMIN
Release 6.2.0
Created by: Denis
Comments: 3
Category: UI for .NET MAUI
Type: Feature Request
4

I know you are all working on this and are addressing the breaking changes between preview7 to RC1, I wanted to open this Feature Request so that I can be immediately notified when UI for MAUI RC1 support is ready to download and use.

Thank you,

Denis

Declined
Last Updated: 16 Oct 2023 11:15 by ADMIN
Created by: Xingyu
Comments: 2
Category: UI for .NET MAUI
Type: Feature Request
0
When testing Telerik UI for .NET MAUI, I found that the column names of the DataGrid do not support Chinese. Is there a solution?
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
Completed
Last Updated: 18 Aug 2023 09:44 by ADMIN
Release 6.1.0
Created by: Prabhav
Comments: 0
Category: UI for .NET MAUI
Type: Feature Request
4
Provide support for preview version of .NET 8
Completed
Last Updated: 20 Mar 2024 07:46 by ADMIN
Release 6.5.0
Created by: Prabhav
Comments: 0
Category: UI for .NET MAUI
Type: Feature Request
2
Provide Support for Telerik UI for .NET MAUI in .NET 8
Unplanned
Last Updated: 31 Jul 2023 15:00 by Tavi
Created by: Tavi
Comments: 0
Category: UI for .NET MAUI
Type: Feature Request
6

Hi Team,

This is a Feature Request to ask Progress Software to build a XAML designer for .NET MAUI. Whether it is inside Visual Studio, or a separate application like Blend, the end goal is the same... to provide developers with a designer surface to develop their XAML UI.

Thank you,

Tavi

Unplanned
Last Updated: 24 Jul 2023 09:06 by kevin
Created by: kevin
Comments: 0
Category: UI for .NET MAUI
Type: Feature Request
5

For Kendo UI there are figma kits and a themebuilder delivered by Telerik.
We want to he same experience for .NET MAUI.

Is it possible for Telerik to deliver a .NET MAUI figma kit?

Declined
Last Updated: 11 Jul 2023 17:10 by ADMIN
Created by: Gold Star
Comments: 1
Category: UI for .NET MAUI
Type: Feature Request
0
We're using a MUAI Balzor template from VS 2022 that relies on .razor pages rather then xaml. Will a version of this be released that would support this project style? 
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.
Duplicated
Last Updated: 15 Jun 2023 05:48 by ADMIN

Currently for all controls I have to have a separate control for the label of the control.  Its annoying.

It would be nice if each of your controls had a Header property and a Control Template property that allows automatic layout of the Header in relationship to the control

So

Enter Name

_______________

It would be one control not currently 2.

 

In addition if the control layout would allow for something like material layout that would be a huge bonus - see below how the Note in the input field moves to the top of the layout.

 
Declined
Last Updated: 15 Jun 2023 12:21 by ADMIN
Created by: Curtis
Comments: 1
Category: UI for .NET MAUI
Type: Feature Request
0

I would like a control to handle Currency that works with the UICulture

 

In the US it would show the input as $ ____.00. or ____.00 (USD) based on UICulture

in other countries it would show the currency symbol based on the UICulture

 

This control should work will all other controls such as grid column input

Duplicated
Last Updated: 15 Jun 2023 12:27 by ADMIN
Created by: Curtis
Comments: 0
Category: UI for .NET MAUI
Type: Feature Request
0

I would like a control that is focused on dates.

It would need an input mask based on the current UICulture

So for say the US it would be in the format of mm/dd/yy

And in europe it would be in the format of yyyy/mm/dd

 

Also it should support a short date format of

mm/yyyy

yyyy/mmm

Again based on UICulture

Unplanned
Last Updated: 06 Jun 2023 11:21 by Uvin
Created by: Uvin
Comments: 0
Category: UI for .NET MAUI
Type: Feature Request
2

Changing the current culture of the application on the fly does not affect the UI components of the current page. Consider the following scenario: the user selects a preferred language from a list. The application changes the current culture dynamically on the fly:

CultureInfo.CurrentCulture = someCulture;
CultureInfo.CurrentUICulture = someCulture;

This does not update the UI of the current page in any way. All of the UI components are displayed with the language of the original culture. The only way to see them translated to the new language is to reload the entire page.

Unplanned
Last Updated: 01 Jun 2023 19:36 by Joseph

Hi Team,

I prefer C#, so I am looking for resources that are not using XAML. Can you please make a duplicate of all your demos and documentation mentions so that we can toggle between XAML and C#.

Thank you

Joesph

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: 25 May 2023 13:50 by Angus
Created by: Angus
Comments: 0
Category: UI for .NET MAUI
Type: Feature Request
0
Add another mode for the pickers - edit mode, so the controls can be focused/unfocused.