Questions tagged [nginfinitescroll]

The ngInfiniteScroll directive provides a seamless way to incorporate infinite scrolling functionality within your AngularJS projects.

"Combining AngularJS with Material Design disrupts the functionality of infinite scroll

Issue: Infinite scroll is loading all pages at once instead of waiting for the user to scroll to the page bottom. Environment: AngularJS 1.3.17 Materials Design 0.10.0 Infinite scroll script: https://github.com/sroze/ngInfiniteScroll Demo being used: The ...

Run the loadMethod in ngInfiniteScroll only one time

<div > <div infinite-scroll='loadMore()' infinite-scroll-distance='2'> <img ng-repeat='image in images' ng-src='http://placehold.it/225x250&text={{image}}'> </div> $scope.images = [1, 2, 3, 4, 5, 6, 7, 8]; $scope.loa ...

Encountered a problem with NGX Infinite Scroll while implementing it in my Angular project

I'm currently using Angular version 11.0.4 and I've been working on implementing infinite scroll functionality with the help of an npm package. Following all the steps outlined in the documentation at https://www.npmjs.com/package/ngx-virtual-scroller How ...

ngInfiniteScroll Activates on Every Scroll Occurrence

Implementing ngInfiniteScroll for endless scrolling on my website has required me to set the height of the outer div to a specific value. Without this adjustment, the Infinite Scroll feature activates unintentionally. <div style="height: 1px"> &l ...

angular setting the scroll offset in ng-infinite scroll

Looking for a way to maintain my offset value in order to fetch the next set of data whenever I scroll or click on 'Load more'. This is essential for enhancing performance. Currently, I am experimenting with setting an offset and limit, passing t ...

What could be causing ngInfiniteScroll to not work properly with tables?

I've been attempting to incorporate ngInfiniteScroll into my table using ng-repeat on <tbody> however, it isn't triggering when I reach the end of the page. <div infinite-scroll="list.getMoreItems()"> <table md-table md-row-select> ...