Unplanned
Last Updated: 10 Feb 2025 09:39 by Thomas

When adding a ComboBox in a page and navigating back from this page to another page, the app crashes. 


PlatformView cannot be null here
StackTrace = "   at Microsoft.Maui.Handlers.ViewHandler`2.get_PlatformView()\r\n   at Telerik.Maui.Handlers.RadBorderHandler.MapBackgroundColor(RadBorderHandler handler, IRadBorder border)\r\n   at Microsoft.Maui.PropertyMapper`2.<>c__DisplayClass5_0.<Add>b__0(IElementH...

Workaround: 

If I wrap that command call in an ICommand then no issues.

Unplanned
Last Updated: 14 Jan 2025 10:44 by Craig
Created by: Craig
Comments: 0
Category: ComboBox
Type: Feature Request
11
When the ComboBox has a focus , the focus visual only uses color change to indicate focus - bottom border color.  Accessibility requirements state that something other than color should be used.  Your other controls use a bottom border focus visual that increased thickness as well as changes color.   Please add such accessibility support for the ComboBox control. 
Unplanned
Last Updated: 14 Jan 2025 10:41 by Craig
Created by: Craig
Comments: 0
Category: ComboBox
Type: Feature Request
12
When the Microsoft Picker control receives focus you can open the popup by pressing the Enter keyboard key. Provide such option for the Telerik MAUI ComboBox control.
Unplanned
Last Updated: 27 Nov 2024 15:35 by ADMIN
Created by: Nico
Comments: 4
Category: ComboBox
Type: Feature Request
1

At the moment, the SelectedItem is not displayed (as readonly text in the entry text) if it is not present in the ItemSource.I suspect this is by design (but maybe a bug?) Background: In my list there are elements that are readonly, i.e. can correspond to the current selection, but cannot be selected by the user if a change is made.At the moment, the ItemSource has to be cleaned of the readonly elements before it is assigned to the ComboBox.A suggested solution would therefore be: Add a FilterDescriptors property, as in the RadCollectionView. This is taken into account in the selection list, but not for the display of the SelectedItem

Dirty workarround vor the moment:


private void cb_Loaded(object sender, EventArgs e)
{
    if (sender is RadComboBox radComboBox)
    {
        IReadOnlyList<IVisualTreeElement> children = radComboBox.GetVisualTreeDescendants();
        RadEntry entry = children.OfType<RadEntry>().FirstOrDefault();
        //entry.Text = DataContextViewModel.SelectedFieldOptionText;
        entry?.Bind(RadEntry.TextProperty, static (IComboBoxViewModel x) => x.SelectedOptionText, source: DataContextViewModel);
    }
}

Unplanned
Last Updated: 14 Nov 2024 10:28 by Jeremiah
I want to turn off the show more functionality in multiselect mode so that the ComboBox will show all selected items when it's not focused
Unplanned
Last Updated: 13 Mar 2024 08:25 by ADMIN

I tested Android and iOS only. Other platforms i cannot test at the moment.

 

Given the following implementation of the Combobox i observ different behaviour if the bound item is a enum or a class.

<telerik:RadComboBox x:Name="a"
                     ItemsSource="{Binding CloudProviders}"
                     SelectedItem="{Binding SelectedCloudProvider}"
                     IsClearButtonVisible="False">
    <telerik:RadComboBox.ItemTemplate>
        <DataTemplate>
            <Grid HeightRequest="40"
                  Padding="10">
                <Label Text="{Binding Title}"
                       TextColor="{DynamicResource DisabledTextColor}"
                       FontSize="14" />
            </Grid>
        </DataTemplate>
    </telerik:RadComboBox.ItemTemplate>
    <telerik:RadComboBox.SelectedItemTemplate>
        <DataTemplate>
            <Grid HeightRequest="40"
                  Padding="10">
                <Label Text="{Binding Title}"
                       TextColor="{DynamicResource DisabledTextColor}"
                       FontSize="14" />
            </Grid>
        </DataTemplate>
    </telerik:RadComboBox.SelectedItemTemplate>
</telerik:RadComboBox>

 

If the Itemssource is a Array of a enum type it works as intended.

If the Itemssource is a Array of classes the initial selected display member is not visible. The moment i tap into the closed combobox, the selected member is visible.

 

The attached screenshots show the page after loading and after touching into the white area(combobox) once.

 

For Localization and more details, we want to use classes. Is this a bug or do we have a issue in our code here?

 

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(); }

Unplanned
Last Updated: 21 Dec 2023 21:47 by ADMIN
Created by: Vivek
Comments: 1
Category: ComboBox
Type: Feature Request
2

I would like to see a new feature in the RadComboBox for "Select All" functionality.

Here is the general functional paradigm I'm hoping to see.

1. All Selection

  • If user checks Select All, it should display every item in the list as checked
  • If user unselected All then every item should be unchecked.

2. Partial Deselection

  • If user unselect only one item, then it should only unselect that item, but also uncheck the "Select All" checkbox, while leaving the reaming items still checked.
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.

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: 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.
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.
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.
1 2