You have to be careful when you declarativily...Hope this helps.
this.reportsDropdown = new ComboBox({
store: _this.reportsStore,
id: "cboReports",
name: "cboReports",
disabled: false,
searchAttr: "label",
onChange: this.reportsChangedEventHandler
}, this.cboReports);
reportsChangedEventHandler: function() {
var report = this.item;
console.log("Report selected: " + report.value);
topic.publish("/Reports/changed", { report: report });
}