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.
2 parents 5dc5d45 + f35b98f commit 851cd1cCopy full SHA for 851cd1c
projects/igniteui-angular/src/lib/grids/grid-navigation.service.ts
@@ -51,6 +51,9 @@ export class IgxGridNavigationService {
51
52
handleNavigation(event: KeyboardEvent) {
53
const key = event.key.toLowerCase();
54
+ if (NAVIGATION_KEYS.has(key)) {
55
+ event.stopPropagation();
56
+ }
57
if (this.grid.crudService.cell && NAVIGATION_KEYS.has(key)) {
58
return;
59
}
0 commit comments