Code development platform for open source projects from the European Union institutions :large_blue_circle: EU Login authentication by SMS will be completely phased out by mid-2025. To see alternatives please check here

Skip to content
Snippets Groups Projects
Commit b5d8f1db authored by Joze RIHTARSIC's avatar Joze RIHTARSIC
Browse files

Fix flickering of search table on refresh

parent aa5c5c46
No related branches found
No related tags found
No related merge requests found
......@@ -39,7 +39,6 @@
[columnMode]="'force'"
[headerHeight]="38"
[footerHeight]="32"
[rowHeight]="'auto'"
[scrollbarH]="true"
[scrollbarV]="true"
[virtualization]="false"
......
......@@ -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();
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment