kamilkp / angular-vs-repeat

Virtual Scroll for AngularJS ngRepeat directive
http://kamilkp.github.io/angular-vs-repeat/
MIT License
818 stars 228 forks source link

The most efficient way to extend the list #65

Open MaestroJurko opened 9 years ago

MaestroJurko commented 9 years ago

When you have an expandable array, what would be the most sufficient way to extend array, without digesting the whole array over.

 [].push.apply(scope.table, extending);
FlavorScape commented 8 years ago

Yeah I'm wondering if this is usable/efficient with real client-server paging in the background.