calling an angular function when an option is selected from list

1.1k Views Asked by At

input type="text" placeholder="" ng-autocomplete ng-keyup="addDeliveryAreas($event)" ng-model="deliveryareas.search" details="details" options="options"

I am using ng-autocomplete directive. https://github.com/wpalahnuk/ngAutocomplete I want to call an angular function when an address is selected from option list

2

There are 2 best solutions below

0
On

Simply use the ng-change directive. angular doc The function you will bind to it will be called everytimes a change to the ng-model occurs.

0
On

I tried several things.. ngblur="myfunction()" worked for my use case