Questions tagged [nginfinitescroll]

ngInfiniteScroll is a directive that you can use to implement infinite scrolling in AngularJS applications.

ngInfiniteScroll is a directive that you can use to implement infinite scrolling in AngularJS applications.

http://binarymuse.github.io/ngInfiniteScroll/

100 questions
0
votes
0 answers

InfiniteScroll - AngularJS not working

Edit: Just for checking purposes, I also did a console.log inside the nextPage function, to check if it's being triggered: $scope.nextPage = function() { var captureLength = $scope.captures.length; console.log('TRIGGER'); if($scope.busy)…
Borni
  • 119
  • 2
  • 12
0
votes
1 answer

Infinite Scrolling doesn't seem to be working (first scroll enter data is loading)

I have a JSON data which contains 1000 products. I am trying to show those products on my web page as a 3*3 grid using infinite scrolling. On very first scroll only , entire data is getting loaded. My code looks like this :
srikanth_k
  • 2,237
  • 3
  • 13
  • 18
0
votes
0 answers

AngularJS ngInfiniteScroll doesn't work

I am trying to use use ngInfiniteScroll. But it doesn't work. Can anyone explain what I am doing wrong post.html - list of posts where scroll suppose to be triggered
0
votes
0 answers

TypeError: Cannot read property 'Scroll' of undefined firebase

Am using firebase.util to create infiniteScroll. I downloaded firebase util using bower.Then i try this code: In my HTML file :
0
votes
1 answer

Can't get ngInfiniteScroll to stop scrolling

I have a fairly simple web page that I cannot get to work properly. I am using AngularJS, Foundation, and ngInfiniteScroll. With this template:
seawolf
  • 1,747
  • 3
  • 15
  • 30
0
votes
1 answer

ngInfiniteScroll resulting in TypeError: Cannot read property 'Scroll' of undefined

I'm working with Angular integrated with Firebase and I'm trying to achieve a infinite scrolling in my application. So I'm struggling to use the ngInfiniteScroll in my page. Following this documentation I start facing TypeError: Cannot read property…
adolfosrs
  • 8,626
  • 5
  • 36
  • 65
0
votes
1 answer

A simple mistake in ngInfiniteScroll

I have used ngInfiniteScroll but i have a small problem, i have a set of data in a variable items for eg) 20 but i want to show 5 on first view and the remaining on sliding. but my code loads all the 20 at the first view how can i achieve this, i…
Ranjith M
  • 499
  • 1
  • 5
  • 23
0
votes
2 answers

ng-infinite scroll angular setting offset

Need to keep track of my offset so that I can get the next set each time either scroll or click 'Load more'. It improves performance. I am trying out here by setting offset and limit and passing as request params to my node server,but how to update…
0
votes
0 answers

Angular JS orderBy does not work with ngInfiniteScroll

I am looping over an array of objects in Angular JS. I have multiple filters applied and I am also using ngInfiniteScrolling for lazy load. Everything works fine except I can't use any sorting. Whatever orderBy I apply nothing changes at all. Here's…
raz3r
  • 2,931
  • 6
  • 39
  • 63
0
votes
1 answer

Trouble filtering angular-meteor collection with infinite-scroll support

I'm trying to create an interactive photo database where the user can sort through photos and filter by user, check multiple categories he or she is interested in, and sort the filtered data by date, number of favorites, etc. The filter/sorting…
aliigleed
  • 366
  • 2
  • 13
0
votes
1 answer

Infinite scroll code not working using angularjs?

Here is a code I am working on for infinite scroll using angularJS. But the code is not working, also shows no error. Here is my code:
0
votes
1 answer

AngularJS + Material Design break infinite scroll

Problem: infinite scroll starts loading all pages at once, instead of waiting for a user scrolling to the page bottom. Setup: AngularJS 1.3.17 Materials Design 0.10.0 Infinite scroll script: https://github.com/sroze/ngInfiniteScroll Following this…
0
votes
2 answers

AngularJS ng-infinite-scroll not working on a specific container/div

I wrote this code after reading multiple posts about ng-infinite-scroll
Ysrninja
  • 59
  • 2
  • 9
0
votes
1 answer

How to implement a infinite scroll with http request?

I am currently writing a webapp angularjs where I get an array of objects, rather long. I use nested ng-repeat to display the objects in my index. I have used infinite scroll like Facebook. When you are in the bottom of the page, it make a http get…
user4717613
0
votes
1 answer

How to prevent ngInfiniteScroll from being triggered when scrolling up

I am trying to implement ngInfiniteScroll and it works fine when I am scrolling down. But, I want to prevent it from triggering when I scroll up when scroll position is near the bottom. Any help ?
user979799
  • 53
  • 6