mirror of
https://github.com/Alfresco/alfresco-ng2-components.git
synced 2025-05-19 17:14:57 +00:00
25 lines
890 B
HTML
25 lines
890 B
HTML
<adf-toolbar>
|
|
<adf-toolbar-title>
|
|
<mat-form-field>
|
|
<mat-select [(ngModel)]="selectedSource">
|
|
<mat-option *ngFor="let source of sources" [value]="source.value">
|
|
{{ source.title }}
|
|
</mat-option>
|
|
</mat-select>
|
|
</mat-form-field>
|
|
</adf-toolbar-title>
|
|
<adf-toolbar-divider fxFlex="0 0 auto"></adf-toolbar-divider>
|
|
<button mat-icon-button
|
|
[disabled]="!hasSelection(customSourcesDocumentList.selection)"
|
|
title="{{ 'DOCUMENT_LIST.TOOLBAR.DOWNLOAD' | translate }}"
|
|
[adfNodeDownload]="customSourcesDocumentList.selection">
|
|
<mat-icon>get_app</mat-icon>
|
|
</button>
|
|
</adf-toolbar>
|
|
<adf-document-list
|
|
#customSourcesDocumentList
|
|
[currentFolderId]="selectedSource"
|
|
locationFormat="/files"
|
|
selectionMode="multiple">
|
|
</adf-document-list>
|