|
|
|
@ -3496,6 +3496,7 @@ BI.DownListCombo = BI.inherit(BI.Widget, {
|
|
|
|
|
height: 25, |
|
|
|
|
items: [], |
|
|
|
|
adjustLength: 0, |
|
|
|
|
direction: "bottom", |
|
|
|
|
el: {} |
|
|
|
|
}) |
|
|
|
|
}, |
|
|
|
@ -3525,6 +3526,7 @@ BI.DownListCombo = BI.inherit(BI.Widget, {
|
|
|
|
|
type: 'bi.combo', |
|
|
|
|
isNeedAdjustWidth: false, |
|
|
|
|
adjustLength: o.adjustLength, |
|
|
|
|
direction: o.direction, |
|
|
|
|
el: BI.createWidget(o.el, { |
|
|
|
|
type: "bi.icon_trigger", |
|
|
|
|
extraCls: o.iconCls ? o.iconCls : "pull-down-font", |
|
|
|
@ -3547,6 +3549,10 @@ BI.DownListCombo = BI.inherit(BI.Widget, {
|
|
|
|
|
this.downlistcombo.hideView(); |
|
|
|
|
}, |
|
|
|
|
|
|
|
|
|
showView: function () { |
|
|
|
|
this.downlistcombo.showView(); |
|
|
|
|
}, |
|
|
|
|
|
|
|
|
|
populate: function (items) { |
|
|
|
|
this.popupview.populate(items); |
|
|
|
|
}, |
|
|
|
|