Skip to content

Commit 43b313f

Browse files
Portugal, Marcelomportuga
Portugal, Marcelo
authored andcommitted
fix(ui-grid-column-menu.js): Focus on first item in column menu on open.
Keyboard navigation fix suggested by @ShibyNiju fix #6482
1 parent f77a5b3 commit 43b313f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/js/core/directives/ui-grid-column-menu.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -410,7 +410,7 @@ function ($timeout, gridUtil, uiGridConstants, uiGridColumnMenuService, $documen
410410
uiGridColumnMenuService.repositionMenu( $scope, $scope.col, $scope.colElementPosition, $elm, $scope.colElement );
411411

412412
//automatically set the focus to the first button element in the now open menu.
413-
gridUtil.focus.bySelector($document, '.ui-grid-menu-items .ui-grid-menu-item', true);
413+
gridUtil.focus.bySelector($document, '.ui-grid-menu-items .ui-grid-menu-item:not(.ng-hide)', true);
414414
delete $scope.colElementPosition;
415415
delete $scope.columnElement;
416416
});

0 commit comments

Comments
 (0)