Unplanned
Last Updated: 10 Nov 2023 13:13 by ADMIN
Created by: Ishani
Comments: 2
Category: ComboBox
Type: Feature Request
1
I want to update ItemsSource on textchanged event. 
Completed
Last Updated: 15 Mar 2023 12:03 by ADMIN
Release R1 2023 SP1

 

In Xamarin R1 2023 (version 2023.1.117), there's an issue which Combobox placeholder is not showing when search is enabled. Placeholder only shown when isEditable is set to false.

This issue only present in the latest version. As I've tried to downgrade to the old version and it's working fine. 

Please fix it, thanks.

Unplanned
Last Updated: 07 Dec 2022 10:35 by n/a
The ComboBox SelectedItems are not displayed in the input, when binded dynamically inside RadListView cell and navigation is performed. 
Unplanned
Last Updated: 19 Oct 2022 11:03 by Aman

Drop-down freezes when double tap (using the track pad), or double click in the combo at a very bottom of the control. 

The drop-down cannot be closed and the combo cannot be used

Unplanned
Last Updated: 22 Sep 2022 10:34 by Novak

When setting dropdown thickness, the dropdown width changes:

Unplanned
Last Updated: 23 May 2022 15:09 by Bobby

MultiLine DisplayText is Doubling the Height on specific android devices and emulators:

DOES HAPPEN:

Galaxy S22 Ultra
Emulator Pixel 2 R 11.0
Emulator: Pixel3A android 11 api 30


DOES NOT HAPPEN:

Galaxy S22
Emulator Android 8 xh_dpi_4_65in




 
Unplanned
Last Updated: 16 May 2022 10:51 by ADMIN
Created by: Bobby
Comments: 1
Category: ComboBox
Type: Feature Request
1

Hi Team,

Please consider adding Open/Closed event for the comboBox's popup. The validation for this is I need to perform validation if a user closes the popup without making a selection.

SelectionChanged doesn't work here, because user never selected anything. Focus events are very finnicky because of the platform differences and input modalities.

The only sane options is to add an official PopupClosed event (and you don't even need custom EventArgs).

Thank you!

Bobby

 

Workaround

For now, I am using reflection+ nonPublic|Instance BindingFields to get a reference to the private RadPopup field of the RadComboBox. With that reference, I am subscribing to PropertyChanged and watching for value changes  of the IsOpen property. 

It goes without saying, this is a very resource intensive and unofficial approach.

public partial class MainPage : ContentPage
{
    private RadPopup internalPopup;

    public MainPage()
    {
        InitializeComponent();
    }

    protected override void OnAppearing()
    {
        base.OnAppearing();

        var popup = typeof(RadComboBox).GetField("popup", BindingFlags.NonPublic | BindingFlags.Instance)?.GetValue(ComboBox1);

        if (popup is RadPopup p1)
        {
            internalPopup = p1;
            internalPopup.PropertyChanged += InternalPopup_PropertyChanged;
        }
    }

    private void InternalPopup_PropertyChanged(object sender, System.ComponentModel.PropertyChangedEventArgs e)
    {
        if (e.PropertyName != nameof(RadPopup.IsOpen))
            return;
        
        if (internalPopup.IsOpen)
        {
            // Popup was opened
        }
        else
        {
            // Popup was closed
        }
    }

    protected override void OnDisappearing()
    {
        if (internalPopup != null)
            internalPopup.PropertyChanged -= InternalPopup_PropertyChanged;

        base.OnDisappearing();
    }
}

Unplanned
Last Updated: 08 Apr 2022 06:24 by Gerald
Created by: Gerald
Comments: 0
Category: ComboBox
Type: Feature Request
0

I would like to make the dropdown appear to the right of the ComboBox instead of showing up below the ComboBox. 

Provide an API for changing the DropDown position. For example, the DropDown could be visualized above or under the input control - similar to AutoCompleteView control

Unplanned
Last Updated: 28 Feb 2022 15:38 by Chris
Created by: Chris
Comments: 7
Category: ComboBox
Type: Bug Report
1

When using Xamarin.UITest for testing an app page containing RadComboBox, attempts to scroll the dropdown fail due to the popup for the dropdown disappearing whenever the popup created by RadComboBox is accessed by the testing framework other than a direct query by Id. (This includes in the Xamarin.UITest REPL with its "tree" command.) This prevents us from completing our automated test suite, which requires that we are able to compare all the items in the dropdown after various operations, as well as being able to scroll through the list to select particular items in it.

Attached is a simple reproduction, with an XF application for iOS and Android using RadComboBox, and a test library project which is able to perform scrolling of the dropdown popup on Android but not iOS.

Unplanned
Last Updated: 24 Jan 2022 07:15 by ADMIN
When the control is inside listview and the drop-down is displayed, if you tap outside of the combo, the drop-down does not close. 
Unplanned
Last Updated: 05 Jan 2022 07:50 by ADMIN
ComboBox text is not visible when the control is inside Grid.Row="40" and testing on device with 800x1200 mdpi: 

<Grid>
    <Grid.RowDefinitions>
        <RowDefinition Height="40"/>
    </Grid.RowDefinitions>
    <Grid.ColumnDefinitions>
        <ColumnDefinition Width="*"/>
        <ColumnDefinition Width="20"/>
        <ColumnDefinition Width="*"/>
    </Grid.ColumnDefinitions>
    <telerikInput:RadComboBox BackgroundColor="Yellow" Padding="0" 
                                Margin="0"
                                Grid.Column="2" x:Name="combo" 
                                Grid.Row="0"/>
        
        
</Grid>



Workaround: 

set higher grid row height: 60 or above, or using Auto row height. 
Unplanned
Last Updated: 16 Dec 2021 13:24 by ADMIN
When RadComboBox is set with multiple selection and more items are preselected, so that the overflow indicator should appear, there is a measurement issue  - the overflow indicator is not displayed and the height of the input area is not measured correctly.  As soon as the user shows and closes the dropdown, the size is properly calculated.
Unplanned
Last Updated: 08 Dec 2021 06:58 by ADMIN

if you have the following setup, more than one ComboBox controls:

<Grid>
    <Grid.RowDefinitions>
        <RowDefinition Height="Auto"/>
        <RowDefinition Height="Auto"/>
    </Grid.RowDefinitions>
    <telerikInput:RadComboBox Grid.Row="0"
                                ItemsSource="{Binding Items}" 
                            DisplayMemberPath="Name"                        
                            SearchTextPath="Name"
                            SearchMode="Contains"
                            Placeholder="select a response..."
                            FontSize="12"
                                x:Name="popup1"
                            SelectionMode="Single"
                            HorizontalOptions="FillAndExpand"
                            HighlightTextColor="DarkOrange"
                            IsDropDownClosedOnSelection="True"
                            IsEditable="True">
           
    </telerikInput:RadComboBox>

    <telerikInput:RadComboBox ItemsSource="{Binding Items}" 
                                DisplayMemberPath="Population" 
                                Grid.Row="1" x:Name="popup2"                      
                            SearchTextPath="Population"
                            SearchMode="Contains"
                            Placeholder="select an employee..."
                            FontSize="12"
                            SelectionMode="Single"
                            HorizontalOptions="FillAndExpand"
                            HighlightTextColor="DarkOrange"
                            IsDropDownClosedOnSelection="True"
                            IsEditable="True">
    </telerikInput:RadComboBox>
</Grid> 

 

and when the user clicks on the first/second control but did not select an item and clicks on another combo, the entry steals focus and cannot close the dwop/down or navigate away.

 

Declined
Last Updated: 02 Nov 2021 11:03 by ADMIN

Hello,

Let's say you have a view... You select multiple items in the combobox... Then you navigate away from that view, return, and you cannot bind the Combobox to previously selected items.

Well, you kind of can, but you can't. The combobox will happily display tokens, but it's just for display. They are not really selected.

Select some items:

(navigate away and back, bind SelectedItems to list above)

 

At this point, doing anything with these items will overwrite whatever was "selected".

By the way, this isn't visible in the screenshot above, but if you have a placeholder set up on the Combobox (I set it to an empty string), it will be shown on the right of the tokens. Which means the control really thinks it's empty.

 

TL;DR - cannot programatically set SelectedItems. The control's multiple selection mode is "one way to source", thus not usable in real world scenarios for editing data.

Unplanned
Last Updated: 19 Aug 2021 05:51 by ADMIN
Created by: Richard
Comments: 0
Category: ComboBox
Type: Feature Request
0
customize the combobox when in editing mode
Unplanned
Last Updated: 30 Jun 2021 07:01 by ADMIN
Created by: Andrew
Comments: 1
Category: ComboBox
Type: Feature Request
2

I would like the ComboBox to be able to handle hierarchical data sources by rendering TreeView, with checkboxes, in the dropdown.

For inspiration, see Kendo UI DropDownTree https://demos.telerik.com/kendo-ui/dropdowntree/checkboxes 

Unplanned
Last Updated: 11 Jun 2021 11:36 by ADMIN

For example when setting the following code in App.xaml resources

<Style TargetType="telerikInput:RadComboBox">
                <Setter Property="DropDownBorderColor" Value="Red"/>
                <Setter Property="VerticalOptions" Value="Center"/>
                <Setter Property="SearchMode" Value="Contains"/>
                <Setter Property="Placeholder" Value="rwfrfre"/>
                <Setter Property="PlaceholderColor" Value="Yellow"/>
                <Setter Property="DisplayMemberPath" Value="Population"/>
                <Setter Property="SearchTextPath" Value="Name"/>
            </Style>

 

null ref exception is thrown for DisplayMemberPath and SearchTextPath. 

When setting the style inside the page where the control is defined, it works as expected. 

 

Unplanned
Last Updated: 19 Apr 2021 14:46 by ADMIN
Provide a way to make the vertical scrollbar visible in case there are a lot of items and users need to scroll down to check them. Currently scrollbar is available on iOS only.
Unplanned
Last Updated: 04 Feb 2021 09:57 by ADMIN
When RadComboBox is placed inside CellContentTemplate of a TemplateColumn of RadDataGrid and ComboBox's SelectedItem property is bound to a property of the data item,  making a selection in any of the ComboBoxes leads to losing the SelectedItem value. The same can be observed when the window (on UWP) is resized or when the device (Android, iOS) is rotated.
Unplanned
Last Updated: 17 Dec 2020 11:56 by ADMIN
Created by: Didi
Comments: 0
Category: ComboBox
Type: Feature Request
9
Currently, while searching in the ComboBox all items in the dropdown are displayed and the searched results are highlighted. 
Provide a way to show just the highlighted searched results in the ComboBox.