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 Mar 2023 11:32 by ADMIN
Release 5.1.0
Created by: Scott
Comments: 0
Category: ComboBox
Type: Bug Report
1
DropDown does not measure properly when there is an element before/after the ComboBox. 
Completed
Last Updated: 18 Jan 2023 12:30 by ADMIN
Release 5.0.0

I want to reset the scroll position because in our implementation, we have filter buttons that when clicked, fetch a new list from our web API. 

It appears that the scroll position is being saved when a new list is assigned while the ComboBox is not focused.

Unplanned
Last Updated: 16 Nov 2022 16:23 by Scott

Whenever the combobox doesn't have enough space to be displayed on the screen, the footer gets pushed to the bottom and off the dropdown popup.

This was tested on Telerik 3.0 but I also tested it on 3.1, 3.2, 3.2.1, and 4.0 with the same results. 

Completed
Last Updated: 15 Mar 2023 11:30 by ADMIN
Release 5.1.0

Reduce the space between the text and the X button.

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.
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.

Completed
Last Updated: 15 May 2024 06:59 by ADMIN
Release 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.
Completed
Last Updated: 15 May 2024 06:59 by ADMIN
Release 7.0.0 (2024 Q2)
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
Completed
Last Updated: 14 Sep 2022 10:11 by ADMIN
Release 3.0.0
Created by: Scofield
Comments: 1
Category: ComboBox
Type: Bug Report
0
The BorderColor doesn't work.
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.
Completed
Last Updated: 10 Nov 2022 15:38 by ADMIN
Release 4.0.0

When setting SelectedItem and using static data for the ItemsSource, Layout cycle detected. Layout could not complete exception is thrown
Setup:

<telerik:RadComboBox x:Name="ComboBox" 
                                 SelectedItem="{Binding SelectedItem, Mode=TwoWay}">
                <telerik:RadComboBox.ItemsSource>
                    <x:Array Type="{x:Type x:String}">
                        <x:String>USA</x:String>
                        <x:String>Uganda</x:String>
                        <x:String>Ukraine</x:String>
                        <x:String>Canada</x:String>
                        <x:String>France</x:String>
                        <x:String>Italy</x:String>
                        <x:String>United Kingdom</x:String>
                        <x:String>China</x:String>
                        <x:String>Japan</x:String>
                    </x:Array>
                </telerik:RadComboBox.ItemsSource>
            </telerik:RadComboBox>

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.

 

Completed
Last Updated: 14 Sep 2022 10:08 by ADMIN
Release 3.0.0
Header and Footer Templates cover the fist and last item in the drop down.
Completed
Last Updated: 10 Nov 2022 15:34 by ADMIN
Release 4.0.0
Setting the IsEnabled property of the RadComboBox component to false makes it appear as grayed out, but the user is still able to select a value from the drop-down.
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()
..................
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.

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.
Completed
Last Updated: 15 May 2024 06:59 by ADMIN
Release 7.0.0 (2024 Q2)
If I use RadCombBox on a ContentPage, this page is never released - this happens only on Android.
1 2