We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0075009 commit efcefb2Copy full SHA for efcefb2
1 file changed
packages/devextreme/js/__internal/grids/grid_core/keyboard_navigation/m_keyboard_navigation.ts
@@ -1830,7 +1830,7 @@ export class KeyboardNavigationController extends KeyboardNavigationControllerCo
1830
return;
1831
}
1832
1833
- const isTargetInRowsView = this._isEventInCurrentGrid(event) && !!$target.closest(rowsViewSelector).length;
+ const isTargetInRowsView = gridCoreUtils.isElementInCurrentGrid(this, $target) && !!$target.closest(rowsViewSelector).length;
1834
const isTargetInEditorOverlay = !!$target.closest(editorOverlaySelector).length;
1835
const isColumnResizing = !!this._columnResizerController?.isResizing();
1836
0 commit comments