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, adjustYOffset: 0,
offsetStyle: "left", offsetStyle: "left",
chooseType: BI.ButtonGroup.CHOOSE_TYPE_SINGLE, 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, adjustYOffset: o.adjustYOffset,
offsetStyle: o.offsetStyle, offsetStyle: o.offsetStyle,
el: this.trigger, el: this.trigger,
hideWhenAnotherComboOpen: o.hideWhenAnotherComboOpen,
popup: { popup: {
el: this.popup, el: this.popup,
maxWidth: o.maxWidth, maxWidth: o.maxWidth,

Loading…
Cancel
Save