Skip to main content

IListFormComboBoxPeoplePickerProps

@spartanfx/react v1.2.2


@spartanfx/react / spfx / IListFormComboBoxPeoplePickerProps

Interface: IListFormComboBoxPeoplePickerProps

Props for the ListFormComboBoxPeoplePicker component.

Extends IListFormFieldRendererProps to integrate with the SharePoint List Form framework.

Extends

Properties

Required

PropertyTypeDescription
fieldIFieldInfoThe SharePoint field definition object.
formStateKeystringThe key used in the form state object, matching the field's internal name.
listFormContextIListFormContextThe full list form context for accessing state, validation, etc.

Options

PropertyTypeDescription
allowedUsers?ISiteUserInfo[]Optional list of users allowed to be selected. If provided, filters the available users.
disabled?booleanWhether the field is disabled. Overrides form-level settings.
disabledUsers?ISiteUserInfo[]Optional list of users that should be disabled (non-selectable) in the picker UI.
inlineLabel?booleanWhether the field label should be displayed inline with the picker.
readonly?booleanIf true, renders the field in readonly mode without user interaction.
required?booleanWhether the field is required.
sourceGroups?string[] | number[]SharePoint group IDs or names to restrict the user selection source. If specified, only users in these groups can be selected.

Events & callbacks

PropertyTypeDescription
onChange?(newValue, oldValue?) => voidOptional callback triggered when the field value changes.

Advanced & escape hatches

PropertyTypeDescription
controlProps?anyProps passed directly to the underlying field control.