mirror of
https://github.com/Alfresco/alfresco-ng2-components.git
synced 2025-09-17 14:21:29 +00:00
* [ADF-1949] Allow customization of the dropdown menu on document picker - add as input properties the 'dropdownHideMyFiles' and the 'dropdownSiteList' to the destination picker, so the list of sites from the dropdown can be customized, if wanted - add navigation on '-mysites-' entries on document-list - use custom dropdown on the copy/move document picker * [ADF-1949] do not use a custom dropdown on the copy/move document picker on ADF side, because this can be done only on ACA side * [ADF-1949] handling the node-dblclick event on content-node-selector.component instead of doing it on the document-list component - and update the sites-dropdown documentation file * [ADF-1949] changes requested on code review * [ADF-1949] fix failing tests
18 lines
831 B
HTML
18 lines
831 B
HTML
<div id="site-dropdown-container" class="adf-site-dropdown-container">
|
|
<mat-form-field>
|
|
<mat-select
|
|
class="adf-site-dropdown-list-element"
|
|
id="site-dropdown"
|
|
placeholder="{{'DROPDOWN.PLACEHOLDER_LABEL' | translate}}"
|
|
floatPlaceholder="never"
|
|
data-automation-id="site-my-files-select"
|
|
[(ngModel)]="siteSelected"
|
|
(ngModelChange)="selectedSite()">
|
|
<mat-option *ngIf="!hideMyFiles" data-automation-id="site-my-files-option" id="default_site_option" [value]="MY_FILES_VALUE">{{'DROPDOWN.MY_FILES_OPTION' | translate}}</mat-option>
|
|
<mat-option *ngFor="let site of siteList" [value]="site.guid">
|
|
{{ site.title | translate }}
|
|
</mat-option>
|
|
</mat-select>
|
|
</mat-form-field>
|
|
</div>
|