Skip to content

Commit 79148c4

Browse files
Vasil MihalkovVasil Mihalkov
authored andcommitted
fix(grid): Stop propagation once handleNavigation is called 10074
1 parent a2eefb4 commit 79148c4

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

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

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,7 @@ export class IgxGridNavigationService {
5050
constructor(protected platform: PlatformUtil) { }
5151

5252
handleNavigation(event: KeyboardEvent) {
53+
event.stopPropagation();
5354
const key = event.key.toLowerCase();
5455
if (this.grid.crudService.cell && NAVIGATION_KEYS.has(key)) {
5556
return;

0 commit comments

Comments
 (0)