@if (selectionMode === 'multiple' && showActionButtons) {
{{ selectedCount }} {{ ('TABLES.CHOSEN_RECORDS' | translate) ?? 'chosen records'}}
{{ ('BUTTONS.DELETE' | translate) ?? 'Delete'}} {{ ('BUTTONS.SAVE' | translate) ?? 'Save'}} {{ ('BUTTONS.DOWNLOAD' | translate) ?? 'Download'}} {{ ('BUTTONS.CANCEL' | translate) ?? 'Cancel'}}
}
@if (this.rowDetailTemplate) { } @if (selectionMode === 'multiple') { } @for (column of tableColumns; track column; let index = $index) { @if (column.visible && column.forceVisibility !== 'hidden') { } @if (this.rowDetailButtonTemplate) { }} @if (loading) { } @else { @for (data of tableRowView; track data.id; let rowIndex = $index) { @if (this.rowDetailTemplate) { } @if (selectionMode === 'multiple') { } @for (column of tableColumns; track column; let columnIndex = $index) { @if (column.visible && column.forceVisibility !== 'hidden') { @if (this.rowDetailButtonTemplate) { }}} @if (this.rowDetailTemplate && data.expanded) { } } @if (!tableRows.length && !loading){ } }
{{ column.headerGetter(column.id, index) | translate }}
@if (column.template) { } @else { }

{{ ('TABLES.EMPTY' | translate) ?? 'No records were found!' }}

@if(showPaginator) {
@if (tableRows.length) {
}
}