We have over 500 rows from list on each request, sometimes it's 10 and sometimes its huge.
I want to take that array and only show what is visible on the screen and hide everything else, but has user scroll down it will display other rows and hide previous ones.
This is bit complex, I was watching RxJS video and Netflix did similar. I'm not sure what functions to use to have this effect.
https://gist.github.com/iBasit/8ceef1db9de945a37559 Netflix example.
Our code:
Observable.fromArray([0,1,2,.....500]).subscribe(row => show(row));