[ADF-3509] - added autoscroll for dynamic table widget (#3763)

This commit is contained in:
Vito
2018-09-11 12:19:28 +01:00
committed by Eugenio Romano
parent fd6f7766ec
commit 4b6adfdb41
2 changed files with 5 additions and 1 deletions

View File

@@ -1,4 +1,4 @@
<div class="{{field.className}}" <div class="adf-dynamic-table-scrolling {{field.className}}"
[class.adf-invalid]="!isValid()"> [class.adf-invalid]="!isValid()">
<div class="adf-label">{{content.name}}<span *ngIf="isRequired()">*</span></div> <div class="adf-label">{{content.name}}<span *ngIf="isRequired()">*</span></div>

View File

@@ -26,6 +26,10 @@
.adf { .adf {
&-dynamic-table-scrolling {
overflow: auto;
}
&-dynamic-table { &-dynamic-table {
width: 100%; width: 100%;
position: relative; position: relative;