diff --git a/src/lib/listing/table/table.component.html b/src/lib/listing/table/table.component.html
index 956bcab..2544a64 100644
--- a/src/lib/listing/table/table.component.html
+++ b/src/lib/listing/table/table.component.html
@@ -5,6 +5,7 @@
[selectionEnabled]="selectionEnabled"
[tableColumnConfigs]="tableColumnConfigs"
[tableHeaderLabel]="tableHeaderLabel"
+ [iqserHelpMode]="headerHelpModeKey"
[totalSize]="totalSize"
>
diff --git a/src/lib/listing/table/table.component.ts b/src/lib/listing/table/table.component.ts
index fb52934..e8e694d 100644
--- a/src/lib/listing/table/table.component.ts
+++ b/src/lib/listing/table/table.component.ts
@@ -45,6 +45,7 @@ export class TableComponent, PrimaryKey exte
@Input() showNoDataButton = false;
@Input() noMatchText?: string;
@Input() helpModeKey?: string;
+ @Input() headerHelpModeKey?: string;
@Input() tableItemClasses?: Record boolean>;
@Input() itemMouseEnterFn?: (entity: Class) => void;
@Input() itemMouseLeaveFn?: (entity: Class) => void;