From 1f0cd5cb5c7c0a75b6ac8c4fa6e7b4b66fcc9305 Mon Sep 17 00:00:00 2001 From: Valentin Mihai Date: Thu, 28 Jul 2022 19:28:33 +0300 Subject: [PATCH] RED-4649 - Create new app keys for help mode for the user manual --- src/lib/listing/table/table.component.html | 1 + src/lib/listing/table/table.component.ts | 1 + 2 files changed, 2 insertions(+) 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;