I am trying to use the typeahead jquery plugin with Angular 2.
This plugin emits several events, one of which 'typeahead:select' i want to bind to.
I've tried these
<input class="form-control" id="search" name="search" on-typeahead-select="onSelect()" />
<input class="form-control" id="search" name="search" (typeahead-select)="onSelect()" />
but none seem to work, the onSelect() method in the component is never called. Is there a way to do this, or is it just not supported?