In Development
Last Updated: 19 Apr 2024 09:13 by ADMIN
If I use RadCombBox on a ContentPage, this page is never released - this happens only on Android.
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: 22 Feb 2024 12:00 by Jamison
When the ComboBox is placed inside a modal popup, the dropdown can't be closed on WinUI when clicking outside.
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: 30 Jan 2024 16:32 by Andrew
If you place an editable ComboBox in a TabView, its DropDown will not close when switching tabs. Just click into the ComboBox input to select an item and navigate to a different tab - the options list stays open.
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: 21 Dec 2023 13:19 by ADMIN
Release 6.6.0
If a RadComboBox is used as an ItemTemplate for a ListView or CollectionView on MacCatalyst, the application crashes every time you attempt to open the dropdown with the following exception:

System.InvalidOperationException: Event registration is overwriting existing delegate. Either just use events or your own delegate: Microsoft.Maui.Controls.Handlers.Items.ReorderableItemsViewDelegator`2[Microsoft.Maui.Controls.ReorderableItemsView,Microsoft.Maui.Controls.Handlers.Items.ReorderableItemsViewController`1[Microsoft.Maui.Controls.ReorderableItemsView]] UIKit.UIScrollView+_UIScrollViewDelegate
   at UIKit.UIApplication.EnsureEventAndDelegateAreNotMismatched(Object del, Type expectedType)
   at UIKit.UIScrollView.EnsureUIScrollViewDelegate()
   at UIKit.UIScrollView.add_Scrolled(EventHandler value)
   at Telerik.Maui.Controls.RadPopup.SetPopupIsOpen(Boolean value)
   at Telerik.Maui.Controls.RadPopup.UpdatePopup()
..................
Completed
Last Updated: 21 Dec 2023 13:19 by ADMIN
Release 6.6.0
Created by: Jon
Comments: 0
Category: ComboBox
Type: Bug Report
3
Null Reference exception is thrown when using Native embedding.
Unplanned
Last Updated: 30 Nov 2023 14:13 by Bernd

When you add Telerik .NET MAUI controls that use icons, such as ComboBox, AutoComplete, etc, there are font-related exceptions in the output.

Although the exceptions do not affect the behavior and appearance of the controls, they make the output hard to read.

Unplanned
Last Updated: 25 Nov 2023 21:09 by Alistair

If a "long" placeholder value is set when the user selects a few of the items from the multi-select combobox and taps off of the combobox, the combobox is left displaying extra whitespace below.

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.
Unplanned
Last Updated: 07 Aug 2023 12:47 by Scott
TapGestureRecognizer not working for RadComboBoxItem on the Android platform.
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.
1 2