mirror of
https://github.com/Alfresco/alfresco-ng2-components.git
synced 2025-05-12 17:04:57 +00:00
* node download directive * integrate with demo shell * docs on the directive * node actions integration * test fixes * remove old and disable invalid tests * remove fdescribe * fix unit tests
18 lines
381 B
Markdown
18 lines
381 B
Markdown
# Node Download directive
|
|
|
|
Allows folders and/or files to be downloaded. Multiple nodes are packed as a '.ZIP' archive.
|
|
|
|
## Basic Usage
|
|
|
|
```html
|
|
<adf-toolbar>
|
|
<button mat-icon-button
|
|
[adfNodeDownload]="documentList.selection">
|
|
<mat-icon>get_app</mat-icon>
|
|
</button>
|
|
</adf-toolbar>
|
|
|
|
<adf-document-list #documentList ...>
|
|
...
|
|
</adf-document-list>
|
|
``` |