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 79148c4 commit ca72707Copy full SHA for ca72707
projects/igniteui-angular/src/lib/grids/grid-navigation.service.ts
@@ -50,9 +50,9 @@ export class IgxGridNavigationService {
50
constructor(protected platform: PlatformUtil) { }
51
52
handleNavigation(event: KeyboardEvent) {
53
- event.stopPropagation();
54
const key = event.key.toLowerCase();
55
if (this.grid.crudService.cell && NAVIGATION_KEYS.has(key)) {
+ event.stopPropagation();
56
return;
57
}
58
if (event.repeat && SUPPORTED_KEYS.has(key) || (key === 'tab' && this.grid.crudService.cell)) {
0 commit comments