I am using a hostlistener in a directive to detect "blur"- and "keyup"-events. Now I need to detect changes in the input-element the directive sits on. I tried
@HostListener('change', ['$event'])
but it does not fire.
Is there a "change"-event? I have also read, that there should be an "input"-event, but that does not fire either.
So, my question is: Is there a list of available events that I can use?
I have searched google:
https://www.google.de/search?q=angular+2+list+of+hostlistener+events
and the angular-documentation:
https://angular.io/api/core/HostListener
but did not find anything.