Skip to content

Latest commit

 

History

History
51 lines (37 loc) · 1.41 KB

permission-list.component.md

File metadata and controls

51 lines (37 loc) · 1.41 KB
Added Status Last reviewed
v2.3.0
Active
2018-05-03

Permission List Component

Shows node permissions as a table.

Permission List

Basic Usage

<adf-permission-list [nodeId]="nodeId">
</adf-permission-list>

If permissions list is empty, No permissions text is displayed, or custom template can be added:

<adf-permission-list [nodeId]="nodeId">
  <adf-no-permission-template>
    Custom no permission template!
  </adf-no-permission-template>
</adf-permission-list>

Class members

Properties

Name Type Default value Description
nodeId string "" ID of the node whose permissions you want to show.

Events

Name Type Description
error EventEmitter<any>
update EventEmitter<PermissionElement> Emitted when the permission is updated.

Details

This component uses a Datatable component to show the permissions retrieved from the Node service. For the locally set permissions a role dropdown will be shown to let the user select a new role. When the user selects a new value, the permission role is automatically updated and the update event is emitted.