Filtering Option

29 Jun 20181 minute to read

The combo box control provides an option to filter the dropdown list based on the text typed. You can set filter option by setting the AllowFiltering boolean property to true.

NOTE

The Allow-Filtering property works only when the IsEditableMode property is set to true.

combobox = new SfComboBox(); 
combobox.IsEditableMode = true; 
combobox.AllowFiltering = true;