fire a event from qooxdoo, how should I do?
ClassA dispatches the event A of type MyEvent and ClassB listens for that event. Then classB dispatches the same event B of type MyEvent with the same data.. In classB I've made this:
var target = evt.getTarget();
this.fireEvent("A", MyEvent, [target])
but I'm repeating code, it's possible to do it more automated?
thanks a lot