Code development platform for open source projects from the European Union institutions

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

Fix table flickering

parent adadb35e
No related branches found
No related tags found
No related merge requests found
Showing
with 16 additions and 37 deletions
......@@ -77,7 +77,7 @@
title="Expand/Collapse Row"
(click)="toggleExpandRow(row)">
<mat-icon class="mat-icon-rtl-mirror">
<mat-icon >
{{expanded ? 'expand_more' : 'chevron_right'}}
</mat-icon>
</a>
......
......@@ -93,7 +93,7 @@ export class SearchTableComponent implements OnInit {
this.columnIndex = {
cellTemplate: this.rowIndex,
name: 'Index',
width: 30,
width: 80,
maxWidth: 80,
sortable: false,
showInitially: false
......@@ -110,7 +110,7 @@ export class SearchTableComponent implements OnInit {
this.columnExpandDetails = {
cellTemplate: this.rowExpand,
name: 'Upd.',
width: 40,
width: 50,
maxWidth: 50,
sortable: false,
showInitially: false
......
......@@ -70,12 +70,12 @@
></tr>
<tr class="mat-row" *matNoDataRow>
<td *ngIf="inputDomainMemberFilter.value;else noDataFound" class="mat-cell" colspan="2">No direct members
<td *ngIf="inputDomainMemberFilter.value;else noDataFound" class="mat-cell" colspan="2">No groups
matching the filter
"{{inputDomainMemberFilter.value}}"
</td>
<ng-template #noDataFound>
<td class="mat-cell" colspan="2">No direct members for the domain</td>
<td class="mat-cell" colspan="2">The domain has no groups</td>
</ng-template>
</tr>
</table>
......
......@@ -73,7 +73,7 @@
"{{inputDomainMemberFilter.value}}"
</td>
<ng-template #noDataFound>
<td class="mat-cell" colspan="2">No direct members for the domain</td>
<td class="mat-cell" colspan="2">The group has no resources</td>
</ng-template>
</tr>
</table>
......
......@@ -126,7 +126,7 @@
"{{inputDomainMemberFilter.value}}"
</td>
<ng-template #noDataFound>
<td class="mat-cell" colspan="2">No direct members for the domain</td>
<td class="mat-cell" colspan="2">the group has no resources</td>
</ng-template>
</tr>
</table>
......
......@@ -65,7 +65,7 @@
"{{inputDomainMemberFilter.value}}"
</td>
<ng-template #noDataFound>
<td class="mat-cell" colspan="2">No direct members for the domain</td>
<td class="mat-cell" colspan="2">The resource has no subresources</td>
</ng-template>
</tr>
</table>
......
......@@ -59,16 +59,16 @@ export class ServiceGroupSearchComponent implements OnInit, AfterViewInit, After
{
name: 'Sr. Cnt.',
prop: 'serviceMetadata.length',
width: 90,
maxWidth: 90,
width: 70,
maxWidth: 70,
resizable: 'false',
showInitially: true,
},
{
name: 'Domain',
prop: 'domainCode',
width: 200,
maxWidth: 200,
width: 180,
maxWidth: 180,
resizable: 'false',
showInitially: true,
},
......@@ -83,15 +83,15 @@ export class ServiceGroupSearchComponent implements OnInit, AfterViewInit, After
{
name: 'Resource identifier',
prop: 'participantIdentifier',
width: 500,
width: 450,
resizable: 'true',
showInitially: true,
},
{
cellTemplate: this.rowSMPUrlLinkAction,
name: 'Resource URL',
width: 150,
maxWidth: 150,
width: 120,
maxWidth: 120,
resizable: 'false',
showInitially: true,
},
......
......@@ -9,15 +9,6 @@
</jaxb:schemaBindings>
</jaxb:bindings>
<!-- rename the value element -->
<!-- jaxb:bindings schemaLocation="../xsd/cppa3.xsd"
node="//xs:complexType[@name='EDIINTChannelType']/xs:complexContent/xs:extension[@base='cppa:ChannelType']/xs:sequence/xs:element[@ref='cppa:ErrorHandling']">
<jaxb:property name="ErrorHandling01"/>
</jaxb:bindings -->
<jaxb:bindings schemaLocation="../xsd/cppa3.xsd" node="//xs:complexType[@name='EDIINTChannelType']/xs:complexContent/xs:extension[@base='cppa:ChannelType']">
<jaxb:bindings node="./xs:sequence/xs:element[@ref='cppa:ErrorHandling']">
<jaxb:property name="EdiIntErrorHandling"/>
......@@ -71,22 +62,10 @@
</jaxb:bindings>
</jaxb:bindings>
<jaxb:bindings schemaLocation="../xsd/cppa3.xsd" node="//xs:element[@name='WSReliableMessagingBinding']/xs:complexType/xs:complexContent/xs:extension[@base='cppa:ReliableMessagingBindingType']">
<jaxb:bindings node="./xs:sequence/xs:element[@ref='cppa:ReceiptHandling']">
<jaxb:property name="RMReceiptHandling"/>
</jaxb:bindings>
</jaxb:bindings>
<!-- jaxb:bindings schemaLocation="../xsd/cppa3.xsd"
node="//xs:complexType[@name='EDIINTChannelType']/xs:complexContent/xs:extension[@base='cppa:ChannelType']/xs:sequence/xs:element[@ref='cppa:ErrorHandling']">
<jaxb:property name="ErrorHandling01"/>
</jaxb:bindings -->
<!-- bindings >
<bindings node="//xs:attributeGroup[@name='headerExtension']/xs:attribute[@ref='S11:mustUnderstand']">
<property name="S11MustUnderstand"/>
</bindings>
</bindings -->
</jaxb:bindings>
......@@ -28,7 +28,7 @@
<!-- used to switch off bean validation which resulted in failing Spring context to load -->
<package-name>javax.validation.*</package-name>
<!-- use smp fasterxml because weblogic version is to old -->
<!-- use smp fasterxml because weblogic version is too old -->
<package-name>com.fasterxml.*</package-name>
</prefer-application-packages>
......
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