From 067cd60e20293dbdb9e474d0980b80a321724f3b Mon Sep 17 00:00:00 2001 From: Lance Edgar Date: Fri, 5 Jan 2018 17:13:01 -0600 Subject: [PATCH] Change how select menus are enhanced for batch exec options jquery selectmenu doesn't play nicely in a dialog, when expanded (options are cut off from screen) --- tailbone/templates/batch/index.mako | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/tailbone/templates/batch/index.mako b/tailbone/templates/batch/index.mako index 75669035..10e9a600 100644 --- a/tailbone/templates/batch/index.mako +++ b/tailbone/templates/batch/index.mako @@ -36,7 +36,10 @@ ], open: function() { if (! dialog_opened) { - $('#execution-options-dialog select').selectmenu(); + $('#execution-options-dialog select[auto-enhance="true"]').selectmenu(); + $('#execution-options-dialog select[auto-enhance="true"]').on('selectmenuopen', function(event, ui) { + show_all_options($(this)); + }); dialog_opened = true; } }