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

13
+
16
14
17
15
## How to use this control in your solutions
18
16
19
17
- Check that you installed the `@pnp/spfx-controls-react` dependency. Check out the [getting started](../#getting-started) page for more information about installing the dependency.
The `ListPicker` control can be configured with the following properties:
49
-
50
-
| Property | Type | Required | Description |
51
-
| ---- | ---- | ---- | ---- |
52
-
| context | WebPartContext OR ApplicationCustomizerContext | yes | The context object of the SPFx loaded webpart or customizer. |
53
-
| className | string | no | If provided, additional class name to provide on the dropdown element. |
54
-
| disabled | boolean | no | Whether or not the control is disabled. |
55
-
| baseTemplate | number | no | The SharePoint BaseTemplate ID to filter the list options by. |
56
-
| includeHidden | boolean | no | Whether or not to include hidden lists. Default is `true`. |
57
-
| orderBy | LibsOrderBy | no | How to order the lists retrieved from SharePoint. |
58
-
| selectedList | string OR string[]| no | Keys of the selected item(s). If you provide this, you must maintain selection state by observing onSelectionChanged events and passing a new value in when changed. |
59
-
| multiSelect | boolean | no | Optional mode indicates if multi-choice selections is allowed. Default to `false`. |
60
-
| label | string | no | Label to use for the control. |
61
-
| placeholder | string | no | Placeholder label to show in the dropdown. |
62
-
| onSelectionChanged | (newValue: string OR string[]): void | no | Callback function when the selected option changes. |
49
+
The `ListItemPicker` control can be configured with the following properties:
0 commit comments