| {{ 'Ngm.Table.Select' | translate: { Default: 'Select' } }} | @for (column of columns(); track column.value) {} |
|---|---|
|
|
@for (column of columns(); track column.value) {
@switch (column.type) {
@case ('boolean') {
@if (row[column.value]) {
yes
} @else {
no
}
}
@default {
@if (column.cellTemplate) {
}
}
|
}
| {{ 'Ngm.Table.NoData' | translate: { Default: 'No data' } }} @if (searchText()) { {{ 'Ngm.Table.MatchingFilter' | translate: { Default: 'matching the filter "' + searchText() + '"', value: searchText() } }} } |