mirror of
https://github.com/Alfresco/alfresco-ng2-components.git
synced 2025-07-31 17:38:48 +00:00
- interpolate ng2 components html content - fix: load images for Login - fix: load images for User Info - fix: load images for Document List - fix: decorator inheritance issue for Form - fix: load images for Search
24 lines
1021 B
HTML
24 lines
1021 B
HTML
<alfresco-datatable
|
|
[data]="data"
|
|
[actions]="contentActions"
|
|
[multiselect]="multiselect"
|
|
[fallbackThumbnail]="fallbackThubnail"
|
|
(showRowContextMenu)="onShowRowContextMenu($event)"
|
|
(showRowActionsMenu)="onShowRowActionsMenu($event)"
|
|
(executeRowAction)="onExecuteRowAction($event)"
|
|
(rowClick)="onRowClick($event)"
|
|
(rowDblClick)="onRowDblClick($event)">
|
|
<div *ngIf="!isEmptyTemplateDefined()">
|
|
<no-content-template>
|
|
<template>
|
|
<div class="document-list_empty_template">
|
|
<div class="document-list__this-space-is-empty">This folder is empty</div>
|
|
<div class="document-list__drag-drop">Drag and Drop</div>
|
|
<div class="document-list__any-files-here-to-add">any files here to add</div>
|
|
<img src="./../img/empty_doc_lib.svg" class="document-list__empty_doc_lib">
|
|
</div>
|
|
</template>
|
|
</no-content-template>
|
|
</div>
|
|
</alfresco-datatable>
|