Browse Source

Pull request #2250: BI-95917 fix:combo.bububle同步combo属性

Merge in VISUAL/fineui from ~CLAIRE.TANG/fineui:master to master

* commit 'e8bbc3ee790f2afc1e5db4d903c477bcaec7b4ad':
  BI-95917 fix:combo.bububle同步combo属性
es6
Claire.Tang 3 years ago
parent
commit
f14819b685
  1. 2
      src/case/combo/bubblecombo/combo.bubble.js

2
src/case/combo/bubblecombo/combo.bubble.js

@ -16,6 +16,7 @@ BI.BubbleCombo = BI.inherit(BI.Widget, {
direction: "bottom,left", // top||bottom||left||right||top,left||top,right||bottom,left||bottom,right
isDefaultInit: false,
destroyWhenHide: false,
hideWhenBlur: true,
isNeedAdjustHeight: true, // 是否需要高度调整
isNeedAdjustWidth: true,
stopPropagation: false,
@ -40,6 +41,7 @@ BI.BubbleCombo = BI.inherit(BI.Widget, {
container: o.container,
direction: o.direction,
isDefaultInit: o.isDefaultInit,
hideWhenBlur: o.hideWhenBlur,
destroyWhenHide: o.destroyWhenHide,
hideWhenAnotherComboOpen: o.hideWhenAnotherComboOpen,
isNeedAdjustHeight: o.isNeedAdjustHeight,

Loading…
Cancel
Save