|
|
|
@ -29,6 +29,7 @@
|
|
|
|
|
/></label>
|
|
|
|
|
</div>
|
|
|
|
|
<p-table
|
|
|
|
|
*ngIf="[80, 200, 200, 200] as columnWidths"
|
|
|
|
|
[value]="data$ | async"
|
|
|
|
|
[lazy]="true"
|
|
|
|
|
[lazyLoadOnInit]="false"
|
|
|
|
@ -42,9 +43,17 @@
|
|
|
|
|
>
|
|
|
|
|
<ng-template pTemplate="colgroup">
|
|
|
|
|
<colgroup>
|
|
|
|
|
<col *ngFor="let width of [80, 200, 200, 200]" [ngStyle]="{ 'width.px': width }" />
|
|
|
|
|
<col *ngFor="let width of columnWidths" [ngStyle]="{ 'width.px': width }" />
|
|
|
|
|
</colgroup>
|
|
|
|
|
</ng-template>
|
|
|
|
|
<ng-template pTemplate="emptymessage" let-columns>
|
|
|
|
|
<tr
|
|
|
|
|
abp-table-empty-message
|
|
|
|
|
[attr.colspan]="columnWidths.length"
|
|
|
|
|
localizationResource="AbpIdentityServer"
|
|
|
|
|
localizationProp="NoDataAvailableInDatatable"
|
|
|
|
|
></tr>
|
|
|
|
|
</ng-template>
|
|
|
|
|
<ng-template pTemplate="header">
|
|
|
|
|
<tr>
|
|
|
|
|
<th>{{ 'AbpIdentity::Actions' | abpLocalization }}</th>
|
|
|
|
|