Browse Source

Merge pull request #144845 in DEC/fineui from master to feature/x

* commit 'a99bd2bdebd2cec745636331c43fca95f3716578':
  无JIRA fix: 事件参数写错了
research/test
superman 2 years ago
parent
commit
0b599d2c1e
  1. 4
      src/case/combo/textvaluecombo/combo.textvalue.js

4
src/case/combo/textvaluecombo/combo.textvalue.js

@ -78,12 +78,12 @@ BI.TextValueCombo = BI.inherit(BI.Widget, {
action: (...args) => {
this.setValue(this.popup.getValue());
this.combo.hideView();
this.fireEvent(BI.TextValueCombo.EVENT_CHANGE, args);
this.fireEvent(BI.TextValueCombo.EVENT_CHANGE, ...args);
}
}, {
eventName: BI.Controller.EVENT_CHANGE,
action: (...args) => {
this.fireEvent(BI.Controller.EVENT_CHANGE, args);
this.fireEvent(BI.Controller.EVENT_CHANGE, ...args);
}
}
]

Loading…
Cancel
Save