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 Apr 12, 2024. It is now read-only.
This throws too many iterations exceptions which then leaves the scope in inconsistent state. The exception got eaten and so it was never shown. The already in progress is a symptom of the original bug
ng-repeat requires stable array elements. Which means that every time you look at the array, the array element have to be same instances. in your case you create a new instance on each iteration.
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
http://jsfiddle.net/ADukg/135/
Not sure what is going on here, if you click the Test button, you'll see "Error: $digest already in progress"
Something about
<tr ng-repeat="row in getRows(tableState)">
seem to cause this.Also, why is getRows() called 11 times per click of the Test button?
The text was updated successfully, but these errors were encountered: