* commit 'a99bd2bdebd2cec745636331c43fca95f3716578': 无JIRA fix: 事件参数写错了
@ -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,
this.fireEvent(BI.Controller.EVENT_CHANGE, args);
this.fireEvent(BI.Controller.EVENT_CHANGE, ...args);
]