@if (isHeaderVisible()) {
}
@if (!loading) {
@if (!noPermission) {
@if (enableDragRows) {
}
@if (actions && actionsPosition === 'left') {
@for (action of getRowActions(row); track action.title) {
}
}
@if (multiselect) {
{{ row.isSelected ? ('ADF-DATATABLE.ACCESSIBILITY.SELECTED' | translate) : '' }}
}
@for (col of getVisibleColumns(); track col.key; let lastColumn = $last;) {
@if (!col.template) {
@switch (data.getColumnType(row, col)) {
@case ('image') {
@if (isIconValue(row, col)) {
} @else {
@if (row.isSelected && !multiselect) {
} @else {
 }})
}
}
}
@case ('icon') {
}
@case ('date') {
}
@case ('location') {
}
@case ('fileSize') {
}
@case ('text') {
}
@case ('boolean') {
}
@case ('json') {
}
@case ('amount') {
}
@case ('number') {
}
@default {
}
}
} @else {
}
}
@if (!showProvidedActions && ((actions && actionsPosition === 'right') || (mainActionTemplate && showMainDatatableActions))) {
@if (actions && actionsPosition === 'right') {
@for (action of getRowActions(row); track action.title) {
}
}
}
@if (isEmpty()) {
@if (noContentTemplate) {
}
}
} @else {
@if (noPermissionTemplate) {
}
}