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
{{ message }}
This repository has been archived by the owner on Aug 24, 2017. It is now read-only.
I tried to call a function in a handler for the added event that acts upon the entire array of items in the bound model, but the item isn't actually added when the added event is called.
This causes problems. It should be called "adding" or else it should not be emitted until after the item is added. Is this not possible due to a timing issue with angular binding?
The text was updated successfully, but these errors were encountered:
The problem is that the event is being emitted in a link function, it should be broadcast in a controller so you can use it from outside of the directive.
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
I tried to call a function in a handler for the added event that acts upon the entire array of items in the bound model, but the item isn't actually added when the added event is called.
This causes problems. It should be called "adding" or else it should not be emitted until after the item is added. Is this not possible due to a timing issue with angular binding?
The text was updated successfully, but these errors were encountered: