|
|
@ -83,8 +83,17 @@ BI.DownListCombo = BI.inherit(BI.Widget, { |
|
|
|
setValue: function (v) { |
|
|
|
setValue: function (v) { |
|
|
|
this.popupview.setValue(v); |
|
|
|
this.popupview.setValue(v); |
|
|
|
}, |
|
|
|
}, |
|
|
|
|
|
|
|
|
|
|
|
getValue: function () { |
|
|
|
getValue: function () { |
|
|
|
return this.popupview.getValue(); |
|
|
|
return this.popupview.getValue(); |
|
|
|
|
|
|
|
}, |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
adjustWidth: function () { |
|
|
|
|
|
|
|
this.downlistcombo.adjustWidth(); |
|
|
|
|
|
|
|
}, |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
adjustHeight: function () { |
|
|
|
|
|
|
|
this.downlistcombo.adjustHeight(); |
|
|
|
} |
|
|
|
} |
|
|
|
}); |
|
|
|
}); |
|
|
|
BI.DownListCombo.EVENT_CHANGE = "EVENT_CHANGE"; |
|
|
|
BI.DownListCombo.EVENT_CHANGE = "EVENT_CHANGE"; |
|
|
|