iapyang 6 years ago
parent
commit
7373184c3c
  1. 7
      dist/bundle.js
  2. 7
      dist/widget.js
  3. 6
      src/widget/singleselect/singleselect.combo.js

7
dist/bundle.js vendored

@ -103570,7 +103570,7 @@ BI.SingleSelectCombo = BI.inherit(BI.Single, {
BI.isKey(self._startValue) && (self.storeValue = self._startValue);
self.trigger.getSearcher().setState(self.storeValue);
};
this.storeValue = o.value || "";
this.storeValue = o.value;
// 标记正在请求数据
this.requesting = false;
@ -103876,7 +103876,7 @@ BI.SingleSelectCombo = BI.inherit(BI.Single, {
},
setValue: function (v) {
this.storeValue = v || "";
this.storeValue = v;
this._assertValue(this.storeValue);
this.combo.setValue(this.storeValue);
},
@ -103898,7 +103898,8 @@ BI.extend(BI.SingleSelectCombo, {
BI.SingleSelectCombo.EVENT_CONFIRM = "EVENT_CONFIRM";
BI.shortcut("bi.single_select_combo", BI.SingleSelectCombo);/**
BI.shortcut("bi.single_select_combo", BI.SingleSelectCombo);
/**
* 选择列表
*
* Created by GUY on 2015/11/1.

7
dist/widget.js vendored

@ -16682,7 +16682,7 @@ BI.SingleSelectCombo = BI.inherit(BI.Single, {
BI.isKey(self._startValue) && (self.storeValue = self._startValue);
self.trigger.getSearcher().setState(self.storeValue);
};
this.storeValue = o.value || "";
this.storeValue = o.value;
// 标记正在请求数据
this.requesting = false;
@ -16988,7 +16988,7 @@ BI.SingleSelectCombo = BI.inherit(BI.Single, {
},
setValue: function (v) {
this.storeValue = v || "";
this.storeValue = v;
this._assertValue(this.storeValue);
this.combo.setValue(this.storeValue);
},
@ -17010,7 +17010,8 @@ BI.extend(BI.SingleSelectCombo, {
BI.SingleSelectCombo.EVENT_CONFIRM = "EVENT_CONFIRM";
BI.shortcut("bi.single_select_combo", BI.SingleSelectCombo);/**
BI.shortcut("bi.single_select_combo", BI.SingleSelectCombo);
/**
* 选择列表
*
* Created by GUY on 2015/11/1.

6
src/widget/singleselect/singleselect.combo.js

@ -22,7 +22,7 @@ BI.SingleSelectCombo = BI.inherit(BI.Single, {
BI.isKey(self._startValue) && (self.storeValue = self._startValue);
self.trigger.getSearcher().setState(self.storeValue);
};
this.storeValue = o.value || "";
this.storeValue = o.value;
// 标记正在请求数据
this.requesting = false;
@ -328,7 +328,7 @@ BI.SingleSelectCombo = BI.inherit(BI.Single, {
},
setValue: function (v) {
this.storeValue = v || "";
this.storeValue = v;
this._assertValue(this.storeValue);
this.combo.setValue(this.storeValue);
},
@ -350,4 +350,4 @@ BI.extend(BI.SingleSelectCombo, {
BI.SingleSelectCombo.EVENT_CONFIRM = "EVENT_CONFIRM";
BI.shortcut("bi.single_select_combo", BI.SingleSelectCombo);
BI.shortcut("bi.single_select_combo", BI.SingleSelectCombo);

Loading…
Cancel
Save