Hello,
I would like to know if there is a way to have two listeners for one component, like in my case one combobox. So it could check any change of combobox and where a value would be selected.
example would be like this :
init: function() {
this.control({
'plan-list #cmbEmployeeSearch': {
select: this.ComboEmployeeSearchSelect
},
'plan-list #cmbEmployeeSearch': {
change: this.ComboEmployeeSearchChange
}
});
}
in this case it listens only the 'change' event not 'select'.
Thank You