diff --git a/src/Oro/Bundle/UIBundle/Resources/public/js/app/modules/ignore-tabbable.js b/src/Oro/Bundle/UIBundle/Resources/public/js/app/modules/ignore-tabbable.js index 361175cb50e..c49e2a0836e 100644 --- a/src/Oro/Bundle/UIBundle/Resources/public/js/app/modules/ignore-tabbable.js +++ b/src/Oro/Bundle/UIBundle/Resources/public/js/app/modules/ignore-tabbable.js @@ -26,6 +26,9 @@ $(document).on('keydown', function(event) { if (nextTabbable) { $(nextTabbable).focus(); + if (typeof nextTabbable.select !== 'undefined') { + nextTabbable.select(); + } event.preventDefault(); } });