I have a ng-repeat table row element that looks like
<tr ng-repeat="project in searchResults | startFrom:searchCurrentPage*searchPageSize | limitTo:searchPageSize"> searchResults is an array with up to dozens of results. My searchPageSize is set at 10. Only ten instances of table rows are displayed at any one time. For a traditional ng-repeat element, I can use ng-enter and ng-enter-active to animate when changes occur - but this technique only works when the underlying array element changes. In this case, the underlying array values stay the same, I am merely filtering through the array itself. How would I animate my table DOM changes here? -- You received this message because you are subscribed to the Google Groups "AngularJS" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To post to this group, send email to [email protected]. Visit this group at http://groups.google.com/group/angular. For more options, visit https://groups.google.com/d/optout.
