Skip to content
This repository was archived by the owner on Apr 12, 2024. It is now read-only.

angular-animate is crippling ng-repeat performance #4789

Closed
kdekooter opened this issue Nov 5, 2013 · 3 comments
Closed

angular-animate is crippling ng-repeat performance #4789

kdekooter opened this issue Nov 5, 2013 · 3 comments

Comments

@kdekooter
Copy link

I am rendering a list of about 280 items in a table like so:

<tr ng-repeat="item in items | orderBy:'name' | limitTo:displayLimit | filter:filter.query | filter:filterTags" ng-click="showItem(item.tcId)" class="tc-clickable">
   <td>{{item.sellersItemIdentification}}</td>
   <td>{{item.name}}</td>
   <td>{{ item.tags | stringList }}</td>
   <td>{{item.salesPrice | currency:'€ '}}</td>
</tr>

After a lot of digging around I found out that ng-animate is totally crippling the rendering performance of this table:

image

Removing ngAnimate from the app makes the table render as expected: fast.

Is this a bug? Can the animation stuff be disabled for this view? I am using angular version 1.2-rc2

@IgorMinar
Copy link
Contributor

This should be fixed in master please reopen if that's not the case. Grab a build from ci.angularjs.org to test.

@matsko
Copy link
Contributor

matsko commented Nov 5, 2013

@kdekooter this was a big issue with RC2 and RC3 got itself a 5000% speed boost with ngAnimate. Please test using that one.

@kdekooter
Copy link
Author

@matsko can't use that version because of #4431 unfortunately.

Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
None yet
Projects
None yet
Development

No branches or pull requests

3 participants