diff --git a/apps/common/main/lib/component/ComboBox.js b/apps/common/main/lib/component/ComboBox.js index d24a0181c..b250ce10f 100644 --- a/apps/common/main/lib/component/ComboBox.js +++ b/apps/common/main/lib/component/ComboBox.js @@ -188,6 +188,11 @@ define([ title : me.options.hint, placement : me.options.hintAnchor||'cursor' }); + + var modalParents = el.closest('.asc-window'); + if (modalParents.length > 0) { + el.data('bs.tooltip').tip().css('z-index', parseInt(modalParents.css('z-index')) + 10); + } } el.on('show.bs.dropdown', _.bind(me.onBeforeShowMenu, me));