Browse Source

BI-105744 fix: 格式化

es6
Oliver.Ke 2 years ago
parent
commit
67cbd9cb48
  1. 3
      src/widget/downlist/combo.downlist.js

3
src/widget/downlist/combo.downlist.js

@ -83,12 +83,15 @@ 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 () { adjustWidth: function () {
this.downlistcombo.adjustWidth(); this.downlistcombo.adjustWidth();
}, },
adjustHeight: function () { adjustHeight: function () {
this.downlistcombo.adjustHeight(); this.downlistcombo.adjustHeight();
} }

Loading…
Cancel
Save