Skip to content

Commit 851cd1c

Browse files
authored
Merge pull request #10130 from IgniteUI/vmihalkov/fix-10074
fix(grid): Stop propagation once handleNavigation is called
2 parents 5dc5d45 + f35b98f commit 851cd1c

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

projects/igniteui-angular/src/lib/grids/grid-navigation.service.ts

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -51,6 +51,9 @@ export class IgxGridNavigationService {
5151

5252
handleNavigation(event: KeyboardEvent) {
5353
const key = event.key.toLowerCase();
54+
if (NAVIGATION_KEYS.has(key)) {
55+
event.stopPropagation();
56+
}
5457
if (this.grid.crudService.cell && NAVIGATION_KEYS.has(key)) {
5558
return;
5659
}

0 commit comments

Comments
 (0)