Browse Source

Pull request #2784: 无jira任务 fix:报错

Merge in VISUAL/fineui from ~JIMMY.CHAI/fineui:master to master

* commit '9dc71f5a9808fd50da3a4ce563604cf1aa508d9b':
  无jira任务 fix:报错
  无jira任务 fix:报错
es6
imp 2 years ago
parent
commit
4189daa80d
  1. 7
      src/widget/downlist/combo.downlist.js

7
src/widget/downlist/combo.downlist.js

@ -28,6 +28,7 @@ BI.DownListCombo = BI.inherit(BI.Widget, {
type: "bi.combo", type: "bi.combo",
trigger: o.trigger, trigger: o.trigger,
isNeedAdjustWidth: false, isNeedAdjustWidth: false,
isDefaultInit: true,
container: o.container, container: o.container,
adjustLength: o.adjustLength, adjustLength: o.adjustLength,
direction: o.direction, direction: o.direction,
@ -83,15 +84,15 @@ BI.DownListCombo = BI.inherit(BI.Widget, {
}, },
populate: function (items) { populate: function (items) {
this.popupview.populate(items); this.popupView.populate(items);
}, },
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 () {

Loading…
Cancel
Save