@if (currentRootElement.field.params.displayRowLabels !== false) {
@let customRowLabel = currentRootElement.field.params | adfRepeatableRowLabel: rowIndex;
{{ customRowLabel ?? ('FORM.FORM_RENDERER.ROW_LABEL' | translate: {number: rowIndex + 1}) }}
}
@let shouldDisplayRemoveRowButton = !currentRootElement.field.rows[rowIndex].isInitial || (currentRootElement.field.rows[rowIndex].isInitial && currentRootElement.field.params.allowInitialRowsDelete);
@if (shouldDisplayRemoveRowButton) {
}
@for (column of row.columns; track column.id; let columnIndex = $index) {
@for (field of column?.fields; track field.id) {
@if (field.type === 'section') {
} @else {
}
}
}
}