diff --git a/src/widget/downlist/combo.downlist.js b/src/widget/downlist/combo.downlist.js index 24c87c336..80b414f73 100644 --- a/src/widget/downlist/combo.downlist.js +++ b/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 } });