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
| checkAll | The text for the "check all" option | 'Check all' |
128
+
| uncheckAll | The text for the "uncheck all" option | 'Uncheck all' |
129
+
| checked | Text for "checked" with single item selected (used in dynamic title) | 'checked' |
130
+
| checkedPlural | Text for "checked" with multiple items selected (used in dynamic title) | 'checked' |
131
+
| searchPlaceholder | Text initially displayed in search input | 'Search...' |
132
+
| defaultTitle | Title displayed in button before selection | 'Select' |
133
+
| allSelected | Text displayed when all items are selected (must be enabled in options) | 'All selected' |
134
+
135
+
## Other examples
136
+
137
+
### Single select
138
+
Although this dropdown is designed for multiple selections, a common request is to only allow a single selection without requiring the user to unselect their previous selection each time. This can be accomplished by setting selectionLimit to 1 and autoUnselect to true.
139
+
```
140
+
{
141
+
...
142
+
selectionLimit: 1,
143
+
autoUnselect: true,
144
+
...
145
+
}
146
+
```
105
147
106
-
## Use model driven forms with ReactiveFormsModule:
148
+
###Use model driven forms with ReactiveFormsModule:
0 commit comments