Browse Source

Pull request #1898: JSY-5296 feat: down list combo popup宽高提供配置接口

Merge in VISUAL/fineui from ~KIRA/fineui:master to master

* commit '35ceefc654050b39c0b236f941e20c754fcc01b2':
  JSY-5296 feat: down list combo popup宽高提供配置接口
es6
Kira 3 years ago
parent
commit
dd3126ce2a
  1. 8
      src/widget/downlist/combo.downlist.js

8
src/widget/downlist/combo.downlist.js

@ -12,7 +12,9 @@ BI.DownListCombo = BI.inherit(BI.Widget, {
trigger: "click",
container: null,
stopPropagation: false,
el: {}
el: {},
minWidth: 140,
maxHeight: 1000
});
},
@ -56,8 +58,8 @@ BI.DownListCombo = BI.inherit(BI.Widget, {
popup: {
el: this.popupview,
stopPropagation: o.stopPropagation,
maxHeight: 1000,
minWidth: 140
maxHeight: o.maxHeight,
minWidth: o.minWidth
}
});

Loading…
Cancel
Save