mirror of
https://github.com/Alfresco/alfresco-ng2-components.git
synced 2025-07-31 17:38:48 +00:00
* create button, download, view functionality added in task attachment list component * created sevice to attach document to task * added new component to create/uplaod attachment to task * added new component to create/uplaod attachment to task * added test case for create task attachment component * added test case for create task attachment component * added input to block upload document to ECM * fixed create task attachment spec file issue * changed alfresco-upload to alfresco-core upload directive * removed attachCreate button and emitter from task-attachment-list * removed uploadToEcm input and checkValidity method from alfresco-upload * added documentation for task-attachment-list and create-task-attachment components
15 lines
427 B
HTML
15 lines
427 B
HTML
<div class="upload-attachment-container">
|
|
<div class="drag-area"
|
|
(upload-files)="onFileUpload($event)"
|
|
mode="['click', 'drop']"
|
|
[adf-upload]="true">
|
|
Drop Files Here...
|
|
</div>
|
|
<button class="mdl-button mdl-js-button mdl-button--raised"
|
|
[adf-upload]="true"
|
|
mode="['click']"
|
|
[multiple]="true"
|
|
(upload-files)="onFileUpload($event)">
|
|
Upload Attachment
|
|
</button>
|
|
</div> |