Правильно?
init: function() {
this.listen({
controller: {
"*": {
barcode: "onBarcode",
scope: this
}
}
});
},
или
"#barcode": {
barcode: "onBarcode",
scope: this
}
или
"barcode": {
barcode: "onBarcode",
scope: this
}
Правда последнее похоже будет конфликтовать с алиасами контролеров видов... Поэтому наверное лучше так:
"app.barcode": {
barcode: "onBarcode",
scope: this
}