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
Please provide the option to display week numbers like here
https://docs.telerik.com/kendo-ui/controls/calendar/week-numbers
Provide a style property for the text in grouping panel. Currently you can style the border, background color and change the header text of the panel. For example:
<Style TargetType="telerik:DataGridGroupingPanel">
<Setter Property="BackgroundColor" Value="Red"/>
<Setter Property="HeaderText" Value="Hello to group"/>
<Setter Property="CornerRadius" Value="10"/>
<Setter Property="BorderThickness" Value="2"/>
<Setter Property="BorderColor" Value="Blue"/>
</Style>
Currently, the ButtonToolbarItemView supports the following visual states:
There is no visual state to indicate that the button is currently in a Pressed state. Implementing this visual state would be beneficial when styling the toolbar item.
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();
}
Hi Team,
The RadWrapLayout is missing from the Visual Studio Toolbox:
Can you please add it in an upcoming update?
Thank you,
Brett
We would like to be able to override the behavior of the Clear button in the editable combo box.
When the user has started typing into an editable combo box, and they click the Clear button before they've selected another item, we want to revert their text to what was in there before they started typing and keep the previously selected item selected, rather than clearing the text and selected item.
If you can add that functionality, even better, but it should be enough to just expose the Clear button's Click event (with a Cancel param or another way to ensure the text isn't cleared), so we can override the current functionality.
Hi Team,
With CheckBoxes and RadioButtons, there is a concept of Button GroupName... where if belonging to a group, a selection is mutually exclusive to that group.
Here is the official docs from Microsoft for the same feature in WPF => https://learn.microsoft.com/en-us/dotnet/api/system.windows.controls.radiobutton.groupname?view=windowsdesktop-7.0
Thank you,
Glenn
Provide an option to modify the ComboBox so there is no space between the ComboBox and the dropdown.