Enum FilterType
Specifies the filter type for searching values in the SfMultiColumnComboBox<TValue, TItem> component.
Namespace: Syncfusion.Blazor.MultiColumnComboBox
Assembly: Syncfusion.Blazor.MultiColumnComboBox.dll
Syntax
public enum FilterType
Remarks
This enumeration defines how the search operation is performed when filtering items in the MultiColumnComboBox. The filter type determines the matching logic used to find items based on user input.
Examples
The following example demonstrates how to set the filter type for a MultiColumnComboBox:
<SfMultiColumnComboBox TValue="string" TItem="Employee"
DataSource="@Employees"
AllowFiltering="true"
FilterType="FilterType.Contains">
</SfMultiColumnComboBox>
Fields
| Name | Description |
|---|---|
| Contains | Filters items where the search term is found anywhere within the text values of the SfMultiColumnComboBox<TValue, TItem> component. |
| EndsWith | Filters items where the search term matches the ending portion of the text values in the SfMultiColumnComboBox<TValue, TItem> component. |
| StartsWith | Filters items where the search term matches the beginning portion of the text values in the SfMultiColumnComboBox<TValue, TItem> component. |