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
Copy file name to clipboardExpand all lines: components/multiselect/filter.md
+38-14Lines changed: 38 additions & 14 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -10,29 +10,36 @@ position: 3
10
10
11
11
# MultiSelect Filter
12
12
13
-
The AutoComplete component can filter the available suggestions according to the current user input, so they can find the one they need faster. To see the difference in behavior, visit the [Live Demo: AutoComplete Filtering](https://demos.telerik.com/blazor-ui/autocomplete/filtering) page.
13
+
The MultiSelect component can filter the available suggestions according to the current user input, so they can find the one they need faster. To see the difference in behavior, visit the [Live Demo: MultiSelect Filtering](https://demos.telerik.com/blazor-ui/multiselect/filtering) page.
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`. You can choose a different operator through the `FilterOperator` parameter that takes a member of the `Telerik.Blazor.StringFilterOperator` enum.
18
18
19
19
To control when the filter list appears, set the `MinLength` parameter. This can be useful if you have a very large list of data.
20
20
21
-
You can also implement custom filtering and set a data source dynamically through the [`OnRead` event]({%slug autocomplete-events%}#onread).
21
+
You can also implement custom filtering and set a data source dynamically through the [`OnRead` event]({%slug multiselect-events%}#onread).
22
22
23
-
>caption Filtering in the AutoComplete
23
+
>caption Filtering in the MultiSelect
24
24
25
25
````CSHTML
26
26
@* as you type "de", you will only get "Developer" and "Designer" as suggestions instead of the full list *@
0 commit comments