How to display other ComboBox values when an item is selected in an editable SfComboBox ?

Dear Syncfusion team,

I want to create a searchable drop down with dozens of countries and I'm looking at this example: https://help.syncfusion.com/xamarin/combobox/combobox-filtering-options#suggesting-choices-and-appending-suggestions-to-text 


<StackLayout VerticalOptions="Start" HorizontalOptions="Start" Padding="30">
    <combobox:SfComboBox HeightRequest="40" x:Name="comboBox" IsEditableMode="true" AllowFiltering="true"  ComboBoxMode="SuggestAppend">
        <combobox:SfComboBox.DataSource>
            <ListCollection:List x:TypeArguments="x:String">
                <x:String> Uganda </x:String>
                <x:String> Ukraine </x:String>
                <x:String> United Arab Emirates </x:String>
                <x:String> United Kingdom </x:String>
                <x:String> United States </x:String>
            </ListCollection:List>
        </combobox:SfComboBox.DataSource>
    </combobox:SfComboBox>
</StackLayout>

Use case:

  • A user selects a country e.g. Uganda.
  • A user wants to change the selection and clicks on a dropdown icon, but the only shown result in the suggestion box will be Uganda.

This is a bit confusing as users would like to see other offered options from the dropdown in the suggestion box.


Please check the attachment so you can see the current example and what I need.


Best wishes,

Aleksandar



Attachment: Examples_78a5bdef.zip

1 Reply

SS Suganya Sethuraman Syncfusion Team November 19, 2021 07:30 AM UTC

Hi Aleksandar,

Greetings from Syncfusion.

We have analyzed your requirement. We have achieved your requirement by setting AllowFiltering to false.

Please have a sample for your requirement,

Sample: https://www.syncfusion.com/downloads/support/directtrac/general/ze/SfComboBoxFilter-547953385

Please check and let us know if you have any concerns.

Regards,
Suganya Sethuraman.
 


Loader.
Up arrow icon