mirror of
https://github.com/Alfresco/alfresco-ng2-components.git
synced 2025-05-12 17:04:57 +00:00
* [ADF-2596] Updated prop script to handle names from input decorators * [ADF-2596] Fixed inputs with accessors * [ADF-2596] Fixed remaining inputs with wrong names * [ADF-2596] Updated prop script to handle names from input decorators * [ADF-2596] Fixed inputs with accessors * [ADF-2596] Fixed remaining inputs with wrong names
1.0 KiB
1.0 KiB
Added, Status, Last reviewed
Added | Status | Last reviewed |
---|---|---|
v2.0.0 | Active | 2018-04-10 |
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 |
adf-delete | `MinimalNodeEntity[] | DeletedNodeEntity[]` |
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.