Hello,
I assume you're using QuickApp-PRO which uses angular material for its UI.
You can use standard css to control the width of the column.
E.g. put the below code into user-list.component.scss
.mat-table {
overflow: auto;
}
.mat-header-cell, .mat-cell {
min-width: 150px;
}
Regards
Hello,
I assume you're using QuickApp-PRO which uses angular material for its UI.
You can use standard css to control the width of the column.
E.g. put the below code into user-list.component.scss
.mat-table {
overflow: auto;
}
.mat-header-cell, .mat-cell {
min-width: 150px;
}
Regards
Ingo has reacted to this post.