diff --git a/modules/backend/assets/js/october.controls.js b/modules/backend/assets/js/october.controls.js index dc94b45c1..cc25822aa 100644 --- a/modules/backend/assets/js/october.controls.js +++ b/modules/backend/assets/js/october.controls.js @@ -51,9 +51,14 @@ formatSelection: formatSelectOption, escapeMarkup: function(m) { return m; } }) - - $(document).on('disable', 'select.custom-select', function(event, status){ - $(this).select2('enable', !status) - }) }) + + $(document).on('disable', 'select.custom-select', function(event, status){ + $(this).select2('enable', !status) + }) + + $(document).on('focus', 'select.custom-select', function(event){ + setTimeout($.proxy(function() { $(this).select2('focus') }, this), 10) + }) + })(jQuery); \ No newline at end of file