RED-4649 - added help mode to table header label
This commit is contained in:
parent
ef1c9be504
commit
ee7bba3d72
@ -6,7 +6,7 @@
|
|||||||
[indeterminate]="listingService.notAllSelected$ | async"
|
[indeterminate]="listingService.notAllSelected$ | async"
|
||||||
></iqser-round-checkbox>
|
></iqser-round-checkbox>
|
||||||
|
|
||||||
<span class="all-caps-label">
|
<span class="all-caps-label" [iqserHelpMode]="helpModeKey">
|
||||||
{{ tableHeaderLabel | translate: { length: totalSize || (listingService.displayedLength$ | async) } }}
|
{{ tableHeaderLabel | translate: { length: totalSize || (listingService.displayedLength$ | async) } }}
|
||||||
</span>
|
</span>
|
||||||
|
|
||||||
|
|||||||
@ -21,6 +21,7 @@ export class TableHeaderComponent<T extends IListable<PrimaryKey>, PrimaryKey ex
|
|||||||
@Input() listingMode: ListingMode = ListingModes.table;
|
@Input() listingMode: ListingMode = ListingModes.table;
|
||||||
@Input() totalSize?: number;
|
@Input() totalSize?: number;
|
||||||
@Input() bulkActions?: TemplateRef<unknown>;
|
@Input() bulkActions?: TemplateRef<unknown>;
|
||||||
|
@Input() helpModeKey?: string;
|
||||||
|
|
||||||
readonly quickFilters$ = this.filterService.getFilterModels$('quickFilters');
|
readonly quickFilters$ = this.filterService.getFilterModels$('quickFilters');
|
||||||
|
|
||||||
|
|||||||
@ -5,7 +5,7 @@
|
|||||||
[selectionEnabled]="selectionEnabled"
|
[selectionEnabled]="selectionEnabled"
|
||||||
[tableColumnConfigs]="tableColumnConfigs"
|
[tableColumnConfigs]="tableColumnConfigs"
|
||||||
[tableHeaderLabel]="tableHeaderLabel"
|
[tableHeaderLabel]="tableHeaderLabel"
|
||||||
[iqserHelpMode]="headerHelpModeKey"
|
[helpModeKey]="headerHelpModeKey"
|
||||||
[totalSize]="totalSize"
|
[totalSize]="totalSize"
|
||||||
>
|
>
|
||||||
<ng-container *ngTemplateOutlet="headerTemplate"></ng-container>
|
<ng-container *ngTemplateOutlet="headerTemplate"></ng-container>
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user