mirror of
https://github.com/Alfresco/alfresco-ng2-components.git
synced 2026-09-09 18:03:21 +00:00
* [ADF-3745] Fixed broken links * [ADF-3745] Added broken link fix for version index * [ADF-3745] Fixed issues caught by Markdown structure checker * [ADF-3745] Fixed broken external links and their tool config
1.3 KiB
1.3 KiB
Title, Added, Status, Last reviewed
| Title | Added | Status | Last reviewed |
|---|---|---|---|
| Node Delete directive | v2.0.0 | Active | 2018-11-20 |
Node Delete directive
Deletes multiple files and folders.
Basic Usage
<adf-toolbar>
<button mat-icon-button
(delete)="documentList.reload()"
[adf-delete]="documentList.selection">
</button>
</adf-toolbar>
<adf-document-list #documentList ...>
...
</adf-document-list>
Class members
Properties
| Name | Type | Default value | Description |
|---|---|---|---|
| permanent | boolean |
false | If true then the nodes are deleted immediately rather than being put in the trash |
| selection | NodeEntry[] | DeletedNodeEntity[] |
Array of nodes to delete. |
Events
| Name | Type | Description |
|---|---|---|
| delete | EventEmitter<any> |
Emitted when the nodes have been deleted. |
Details
Note that if a target item is already in the trashcan (and is therefore a DeletedNodeEntity) then
this action will delete the file permanently.