@if(execute){
@if(tableDataView?.length){
@for (row of tableDataView; track row; let indexRow = $index){
@if(row[0].cm_description?.trim() != 'Precedente'){
@if (hasValidCell(row[0].campi)) {
@for (cell of row; track cell) {
@if (hasValidCell(cell.campi)) {
}
}
}
}
}
}
}
@if(view){
@for (row of tableDataView; track row; let indexRow = $index) {
@if(row[0].cm_description?.trim() !== 'Precedente') {
{{row[0].cm_description}}
@if (row[0].title) {
| {{ row[0].title }} |
}
@for (cell of row; track cell) {
@if (cell.cm_description) {
|
@if(cell.cm_description){
}
|
}
}
}
}
}@else{
@for (row of tableData; track row; let indexRow = $index) {
@if(execute && !multiple && isSingleCellRow(row)){
|
@for (cell of row; track cell) {
@if(cell.cm_description){
}
}
|
}@else{
@for (cell of row; track cell; let indexcell = $index) {
@if(multiple && indexRow==multiple_row ){
} @if(cell.cm_description){
}
|
}
}
}
}