Browse Source

BI-111465 fix:字段下拉combo遮挡

es6
Wilson Zhang 2 years ago
parent
commit
5a3fd3cbc4
  1. 4
      src/case/combo/iconcombo/combo.icon.js

4
src/case/combo/iconcombo/combo.icon.js

@ -21,7 +21,8 @@ BI.IconCombo = BI.inherit(BI.Widget, {
adjustYOffset: 0,
offsetStyle: "left",
chooseType: BI.ButtonGroup.CHOOSE_TYPE_SINGLE,
isShowDown: true
isShowDown: true,
hideWhenAnotherComboOpen: false
});
},
@ -71,6 +72,7 @@ BI.IconCombo = BI.inherit(BI.Widget, {
adjustYOffset: o.adjustYOffset,
offsetStyle: o.offsetStyle,
el: this.trigger,
hideWhenAnotherComboOpen: o.hideWhenAnotherComboOpen,
popup: {
el: this.popup,
maxWidth: o.maxWidth,

Loading…
Cancel
Save