You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The ComboBox component allows the user to filter the available items by their text, so they can find the one they need faster.
13
+
The MultiColumnComboBox component allows the user to filter the available items by their text, so they can find the one they need faster.
14
14
15
15
To enable filtering, set the `Filterable` parameter to `true`.
16
16
17
17
Filtering ignores casing and the default filter operator is `starts with`. Filtering looks in the `TextField`, and the filter is reset when the dropdown closes. You can choose a different operator through the `FilterOperator` parameter that takes a member of the `Telerik.Blazor.StringFilterOperator` enum.
18
18
19
-
By default, the filtering will be debounced with 150ms. Configure that with the [`DebounceDelay`]({%slug components/combobox/overview%}#parameters) parameter of the component.
19
+
By default, the filtering will be debounced with 150ms. Configure that with the [`DebounceDelay`]({%slug multicolumncombobox-overview%}#parameters) parameter of the component.
20
20
21
-
You can also implement custom (server) filtering and set a data source dynamically through the [`OnRead` event]({%slug components/combobox/events%}#onread).
22
-
23
-
>caption Filtering in the ComboBox
21
+
>caption Filtering in the MultiColumnComboBox
24
22
25
23
````CSHTML
26
-
@* Type something in the input to see items whose text contains only the typed string, for example "uct 2" *@
27
-
28
-
@SelectedValue
29
-
<br />
30
-
31
-
<TelerikComboBox Data="@Data"
32
-
Filterable="true"
33
-
Placeholder="Find product by typing part of its name"
0 commit comments