Page MenuHomec4science

ontology-table.component.html
No OneTemporary

File Metadata

Created
Tue, Sep 10, 05:13

ontology-table.component.html

<table *ngIf="dataMapping" [id]="dataMapping.subject" mat-table multiTemplateDataRows [dataSource]="dataMapping.queryDataMappings">
<ng-container matColumnDef="predicate">
<th class="predicate" mat-header-cell *matHeaderCellDef>{{dataMapping.subject}}</th>
<td class="predicate" mat-cell *matCellDef="let element"><content [content]="element.predicate"></content></td>
</ng-container>
<ng-container matColumnDef="value">
<th mat-header-cell *matHeaderCellDef>a <content [content]="dataMapping.subjectType.value" [links]="[dataMapping.subjectType]"></content></th>
<td class="value" mat-cell *matCellDef="let element"><content [content]="element.value" [links]="element.links"></content></td>
</ng-container>
<tr mat-header-row *matHeaderRowDef="[ 'predicate', 'value' ]"></tr>
<tr mat-row *matRowDef="let element; columns: [ 'predicate', 'value' ]"></tr>
<!-- <tr><td>{{dataMapping.subject}}</td></tr>-->
</table>

Event Timeline