I want to dispatch a custom event from my Angular Dart component to his parent. How can I do this with Angular Dart?
In other words I want do something similar to this: How do you dispatch and listen for custom events in Polymer?
I want to dispatch a custom event from my Angular Dart component to his parent. How can I do this with Angular Dart?
In other words I want do something similar to this: How do you dispatch and listen for custom events in Polymer?
Maybe
emit
does what you want but I assume this works only within Angular. If you want to send DOM events you can do it withdispatchEvent
method likeYou can listen for this event by
or in Polymer (because I saw that you tried to make Angular work together with Polymer)