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 0cf006b commit 6c4f5f4Copy full SHA for 6c4f5f4
projects/igniteui-angular/src/lib/grids/grid-navigation.service.ts
@@ -51,8 +51,10 @@ export class IgxGridNavigationService {
51
52
handleNavigation(event: KeyboardEvent) {
53
const key = event.key.toLowerCase();
54
- if (this.grid.crudService.cell && NAVIGATION_KEYS.has(key)) {
+ if (NAVIGATION_KEYS.has(key)) {
55
event.stopPropagation();
56
+ }
57
+ if (this.grid.crudService.cell && NAVIGATION_KEYS.has(key)) {
58
return;
59
}
60
if (event.repeat && SUPPORTED_KEYS.has(key) || (key === 'tab' && this.grid.crudService.cell)) {
0 commit comments