Browse Source

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

es6
Kira 3 years ago
parent
commit
35ceefc654
  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