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
| name | string |*Required*. Name of the select element |
189
189
| options | array, Collection | The options to display on the select. |
190
+
| fetch-url | string | An url to fetch for available options (to use with big data). The library will add a `q` querystring param with the searched string. Response should be a json in the `{ [value]: [label] }` format|
190
191
| value | string, int | The initial selected value ||
191
192
| required | bool | Set the select element as required (form can't be submitted without selection) ||
192
193
| placeholder | string | Element placeholder when no option is selected |
@@ -220,12 +221,14 @@ Renders a multiple selection element with a research bar for filtering the optio
| name | string |*Required*. Name of the select element |
222
223
| options | array, Collection | The options to display on the select. |
223
-
| value | array | The initial selected values ||
224
-
| required | bool | Set the select element as required (form can't be submitted without selection) ||
224
+
| fetch-url | string | An url to fetch for available options (to use with big data). The library will add a `q` querystring param with the searched string. Response should be a json in the `{ [value]: [label] }` format|
225
+
| value | array | The initial selected values |
226
+
| required | bool | Set the select element as required (form can't be submitted without selection) |
225
227
| placeholder | string | Element placeholder when no option is selected |
226
228
| label | string | If present, renders a `Label` above the element |
227
229
| icon | string | If present, renders an `IconGroup` around the element |
228
230
| search-placeholder | string | The placeholder of the search input |
231
+
| select-buttons | bool | Whether or not to show "select all" and "unselect all" buttons (default true) |
229
232
| * || Additional attributes will be forwarded to the underlying element. |
0 commit comments