diff --git a/smp-angular/src/app/common/search-table/search-table.component.html b/smp-angular/src/app/common/search-table/search-table.component.html index 7ea56530ab7f8367da8b194bdabd40cee84ee121..40f7043af3e05a3a57e85c8ed5f2b014736fa06d 100644 --- a/smp-angular/src/app/common/search-table/search-table.component.html +++ b/smp-angular/src/app/common/search-table/search-table.component.html @@ -39,7 +39,6 @@ [columnMode]="'force'" [headerHeight]="38" [footerHeight]="32" - [rowHeight]="'auto'" [scrollbarH]="true" [scrollbarV]="true" [virtualization]="false" diff --git a/smp-angular/src/app/service-group-search/service-group-search.component.ts b/smp-angular/src/app/service-group-search/service-group-search.component.ts index bdd2cddac659dccca7b73a69e2f32930e2892891..f6f7e9c92f91f118006781b431922135ae699339 100644 --- a/smp-angular/src/app/service-group-search/service-group-search.component.ts +++ b/smp-angular/src/app/service-group-search/service-group-search.component.ts @@ -57,41 +57,43 @@ export class ServiceGroupSearchComponent implements OnInit, AfterViewInit, After initColumns(): void { this.columnPicker.allColumns = [ { - name: 'Subres. size', + name: 'Sr. Cnt.', prop: 'serviceMetadata.length', + width: 90, + maxWidth: 90, + resizable: 'false', showInitially: true, - width: 120, - maxWidth: 120, - resizable: "false", }, { name: 'Domain', - width: 120, - maxWidth: 200, prop: 'domainCode', + width: 200, + maxWidth: 200, + resizable: 'false', showInitially: true, }, { name: 'Resource scheme', prop: 'participantScheme', + width: 250, + maxWidth: 250, + resizable: 'true', showInitially: true, - width: 300, - maxWidth: 300, - resizable: "false" }, { name: 'Resource identifier', prop: 'participantIdentifier', + width: 500, + resizable: 'true', showInitially: true, }, { cellTemplate: this.rowSMPUrlLinkAction, name: 'Resource URL', + width: 150, + maxWidth: 150, + resizable: 'false', showInitially: true, - width: 250, - maxWidth: 250, - resizable: "false", - sortable: false }, ]; this.searchTable.tableColumnInit();