alfresco-ng2-components/docs/core/node-delete.directive.md
Andy Stark e03f3a1a6b [ADF-3323] Fixed broken links in doc files (#3662)
* [ADF-3323] Fixed URL path to Typescript source files

* [ADF-3323] Fixed and checked broken links caused by previous bug
2018-08-14 15:42:45 +01:00

1.2 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
selection MinimalNodeEntity[] | 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.

See also