Searches users/people.

Basic Usage

<adf-people-search></adf-people-search>

Transclusions

You can provide a title for the search header and a label for the action button using special sub-components in the body of the <adf-people-search> element:

<adf-people-search ...>
    <header-title>Custom title</header-title>
    <action-button-label>Custom label</action-button-label>
</adf-people-search>

Class members

Properties

NameTypeDefault valueDescription
resultsObservable<UserProcessModel[]>Parameters for displaying the list.

Events

NameTypeDescription
closeSearchEventEmitter<any>Emitted when the "close" button is clicked.
searchPeopleEventEmitter<any>Emitted when a search is performed with a new keyword.
successEventEmitter<UserProcessModel>Emitted when a user is selected and the action button is clicked.

Details

Usage example:

<adf-people-search
       (searchPeople)="searchUser($event)"
       (success)="involveUser($event)"
       (closeSearch)="onCloseSearch()"
       [results]="peopleSearch$">
           <header-title>{{ 'TASK_DETAILS.LABELS.ADD_PEOPLE' | translate }}</header-title>
           <action-button-label>{{ 'PEOPLE.ADD_USER' | translate }}</action-button-label>
</adf-people-search>

© 2023 Alfresco Software, Inc. All Rights Reserved.