Creating a SfMultiColumnDropdownControl with bindings equivalent to a ComboBox

Hello,

I am attempting to replace a ComboBox with a SfMultiColumnDropdownControl. This Combobox has a ItemsSource binding to a viewmodel property, with DisplayMemberPath, SelectedValuePath, and SelectedValue. Can you provide an example where you have a ComboBox with such bindings and then a SfMultiColumnDropdownControl with the same bindings?

The functional difference is that I want the SfMultiColumnDropdownControl because this control allows me to filter the display members of the items source


1 Reply

SB Sweatha Bharathi Syncfusion Team August 22, 2025 08:26 AM UTC

Hi Eric Nguyen,


We have reviewed your query. Based on your query, we have provided a SfMultiColumnDropDown sample that demonstrates the use of DisplayMember, ValueMember, and SelectedValue, which are equivalent to the properties used in a ComboBox.

For further information about filtering and data binding in SfMultiColumnDropDown, you can refer to the following user guide documentation.

Code snippet to use binding properties for SfMultiColumnDropDown:

<syncfusion:SfMultiColumnDropDownControl ItemsSource="{Binding Orders}"

                                                                                   DisplayMember="CustomerID"

                                                                                   ValueMember="Country"                                    

                                                                                   SelectedValue="{Binding SelectedItem}" >

    <syncfusion:SfMultiColumnDropDownControl.Columns>

        <syncfusion:GridTextColumn MappingName="OrderID" />

        <syncfusion:GridTextColumn MappingName="CustomerID" />

        <syncfusion:GridTextColumn MappingName="Country" />

    </syncfusion:SfMultiColumnDropDownControl.Columns>

</syncfusion:SfMultiColumnDropDownControl>


UG Links:

Data Binding

Filtering


Image Reference:

A screenshot of a computer

AI-generated content may be incorrect.


Find the sample demo in the attachment and let us know if you have any concerns on this.


If this post is helpful, please consider Accepting it as the solution so that other members can locate it more quickly.


Regards,

Sweatha B



Attachment: SfMultiColumnDropDown_1db655a3.zip

Loader.
Up arrow icon