We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 80b6a86 commit 1a840d1Copy full SHA for 1a840d1
projects/igniteui-angular/src/lib/grids/hierarchical-grid/hierarchical-cell.component.ts
@@ -90,8 +90,7 @@ export class IgxHierarchicalGridCellComponent extends IgxGridCellComponent imple
90
* @hidden
91
* @internal
92
*/
93
- @HostListener('keydown', ['$event'])
94
- _dispatchEvent(event: KeyboardEvent) {
+ dispatchEvent(event: KeyboardEvent) {
95
const key = event.key.toLowerCase();
96
if (event.altKey && !this.row.added) {
97
const grid = this.gridAPI.grid;
@@ -113,6 +112,7 @@ export class IgxHierarchicalGridCellComponent extends IgxGridCellComponent imple
113
112
}
114
return;
115
+ super.dispatchEvent(event);
116
117
118
protected persistFocusedCell(rowID) {
0 commit comments