fay 6 years ago
parent
commit
5b901d9a2a
  1. 17
      src/case/combo/textvaluedownlistcombo/combo.textvaluedownlist.js

17
src/case/combo/textvaluedownlistcombo/combo.textvaluedownlist.js

@ -20,7 +20,7 @@ BI.TextValueDownListCombo = BI.inherit(BI.Widget, {
this._createValueMap(); this._createValueMap();
var value; var value;
if(BI.isNotNull(o.value)){ if(BI.isNotNull(o.value)) {
value = this._digest(o.value); value = this._digest(o.value);
} }
this.trigger = BI.createWidget({ this.trigger = BI.createWidget({
@ -44,13 +44,19 @@ BI.TextValueDownListCombo = BI.inherit(BI.Widget, {
}); });
this.combo.on(BI.DownListCombo.EVENT_CHANGE, function () { this.combo.on(BI.DownListCombo.EVENT_CHANGE, function () {
self.setValue(self.combo.getValue()[0].value); var currentVal = self.combo.getValue()[0].value;
self.fireEvent(BI.TextValueDownListCombo.EVENT_CHANGE); if (currentVal !== self.value) {
self.setValue(currentVal);
self.fireEvent(BI.TextValueDownListCombo.EVENT_CHANGE);
}
}); });
this.combo.on(BI.DownListCombo.EVENT_SON_VALUE_CHANGE, function () { this.combo.on(BI.DownListCombo.EVENT_SON_VALUE_CHANGE, function () {
self.setValue(self.combo.getValue()[0].childValue); var currentVal = self.combo.getValue()[0].childValue;
self.fireEvent(BI.TextValueDownListCombo.EVENT_CHANGE); if (currentVal !== self.value) {
self.setValue(currentVal);
self.fireEvent(BI.TextValueDownListCombo.EVENT_CHANGE);
}
}); });
}, },
@ -69,6 +75,7 @@ BI.TextValueDownListCombo = BI.inherit(BI.Widget, {
}, },
_digest: function (v) { _digest: function (v) {
this.value = v;
return this.valueMap[v]; return this.valueMap[v];
}, },

Loading…
Cancel
Save