Unplanned
Last Updated: 16 Apr 2024 14:17 by ADMIN
Created by: Holger
Comments: 1
Category: ComboBox
Type: Feature Request
1
The RadEntry control has IsSpellCheckEnabled property. Disable the spell check by default for the RadComboBox control
In Development
Last Updated: 15 Apr 2024 10:13 by ADMIN
Scheduled for 7.0.0 (2024 Q2)
I want to achieve the dropdown size dynamically based on the item count. I would also like to set a maximum height, so if more items are loaded, the dropdown should be scrolled to that size.
Unplanned
Last Updated: 08 Feb 2024 12:39 by Jessica
Created by: Jessica
Comments: 0
Category: ComboBox
Type: Feature Request
0
Add styling property for token background color on ComboBox. Currently the only way to achieve the scenario is using token template.
Unplanned
Last Updated: 24 Jan 2024 16:01 by Vivek
Created by: Vivek
Comments: 0
Category: ComboBox
Type: Feature Request
0

Provide an option to hide the tokens and display only the count of the selected items instead of showing all selected items in the input area.

 

Unplanned
Last Updated: 24 Jan 2024 11:34 by Francisco M.

When setting the ComboBox ItemsSource to be Dictionary, the values are not displayed in the drop down.

Workaround:

The dictionary should be converted to List:

    public Dictionary<string, string> Status { get; set; } = new() { { "1", "Test" }, { "2", "hello" } };
    public IList<string> Data { get => this.Status.Values.ToList(); }

Completed
Last Updated: 15 Nov 2023 08:59 by ADMIN
Release 6.5.0

It would be nice to have the ability to select different item in the dropdown by keyboard up/down arrows.

This feature probably does not make sense on mobile platforms, but it would be great on desktop platforms.
Completed
Last Updated: 15 Nov 2023 08:59 by ADMIN
Release 6.5.0
Created by: Allen
Comments: 0
Category: ComboBox
Type: Feature Request
12
When is edit mode, provide support for closing the drop-down when enter key is pressed
Unplanned
Last Updated: 31 Oct 2023 22:55 by Justin
Currently SelectedItems is read-only, so users can bind it with one-way binding and only add and remove items from it. It would be helpful if SelectedItems can be directly bound in two-way mode and manipulated from the view model.
Completed
Last Updated: 28 Aug 2023 13:01 by Teddy
Release 6.1.0
Created by: Teddy
Comments: 3
Category: ComboBox
Type: Feature Request
2

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.

Completed
Last Updated: 18 Aug 2023 09:44 by ADMIN
Release 6.1.0

Provide an option to modify the ComboBox so there is no space between the ComboBox and the dropdown.

Unplanned
Last Updated: 07 Aug 2023 20:29 by Ilker
Created by: Ilker
Comments: 0
Category: ComboBox
Type: Feature Request
1
I would like to have a behavior similar to the WinForms RadComboBox's "All Items". this could be a button in the template, or when using tokens, have a single token that represents all items.
Completed
Last Updated: 07 Jun 2023 07:41 by ADMIN
Release 5.2.0
Created by: Curtis
Comments: 0
Category: ComboBox
Type: Feature Request
7
I have a Combobox that I want the width of the dropdown to be larger than the input text width.
Unplanned
Last Updated: 09 May 2023 16:11 by ADMIN
Created by: Craig
Comments: 3
Category: ComboBox
Type: Feature Request
9
Please open and provide the full control templates so we can full customize the controls.  For example, we want to be able to see the combobox control template so we can customize the dropdown beyond just property value changes.
Declined
Last Updated: 05 May 2023 14:25 by ADMIN
Created by: Teddy
Comments: 1
Category: ComboBox
Type: Feature Request
2

Hi Team,

We have a need for being able to dynamically choose a template for the three available DataTemplate:

Thank you,

Teddy

Unplanned
Last Updated: 29 Mar 2023 22:20 by Victor
Created by: Scofield
Comments: 1
Category: ComboBox
Type: Feature Request
4
Input Validation Support
Unplanned
Last Updated: 16 Mar 2023 15:33 by Erik Damgaard
Created by: Erik Damgaard
Comments: 0
Category: ComboBox
Type: Feature Request
0
ComboBox: Expose generic approach for RadHighlightLabel.
Duplicated
Last Updated: 27 Jan 2023 08:32 by ADMIN
Created by: Matthew
Comments: 0
Category: ComboBox
Type: Feature Request
4

Hi Team,

Currently, the popup for the RadComboBox doesn't allow you to make it wider than the ComboBox's width (even if you set ItemTemplate to be wider).

The only available properties for styling the "dropdown/popup' are listed here https://docs.telerik.com/devtools/maui/controls/combobox/styling, which happens to include DropDownHeight, but not Width.

This feature request asks you to allow us to set this DropDownWidth via Style, Property, ControlTemplate, or whatever best fit the control architecture.

Thank you,

Matthew

Unplanned
Last Updated: 22 Aug 2022 06:52 by ADMIN
Created by: Maulik
Comments: 3
Category: ComboBox
Type: Feature Request
15

RadComboBox for .NET MAUI has search feature, however it does not filters the items matching the text, instead it only scrolls to the matching item. We can manually filter the items in the item source but it would be nice to have such filtering built in.

Also we need to highlight the first item that matches the search string. Currently it doesn't seem to be possible. One way could be to select the first item manually which may change the background of the item and give a feel of highlight but that causes problem with selected item because we also need to subscribe to selected item change and do some other processing based on that. If we select item as filter happens then it would trigger selection change multiple times needlessly.

Also it seems that currently RadComboBox dropdown does not have support for keyboard navigation. We need to be able to navigate between items with keyboard up/down arrows so that user can navigate to different items and then press enter to select the highlighted item. This feature might not make sense on mobile but it is needed for desktop platforms.

Let me know if there is already a way to achieve the above behavior.

Unplanned
Last Updated: 22 Jun 2022 07:39 by ADMIN

In RadComboBox, when entering text to filter the items in dropdown, it would be nice to have the first item selected by default that matches the filter and also have the ability to select different item by keyboard up/down arrows.

This feature probably does not make sense on mobile platforms, but it would be great on desktop platforms.