You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
<ac-select after-model-change="DoYourThing()" ac-model="myModel" ac-options="item.ItemProperty for item in getItems()"></ac-select>
In the controller DoYourThing is called after model update, so $scope.myModel can be used in it.
$scope.myModel will contain the last selected item instead of the old one (which is the case with ac-change)
ac-change seems to run before the model is updated.
Angular's ng-change runs after model update..
Doesn't it make sense to do the same as angular?
The text was updated successfully, but these errors were encountered: