Is Angular still keeping auto-binding references to the lower numbered items.rows that go off screen as you scroll down?
I just assumed to implement infinite scrolling with no performance issues, the array used by the repeater needs to be constantly maintained to only contain the visible rows (constantly removing lower numbered rows when scrolling down, and removing higher numbered rows when scrolling up.). So if the scroll area is designed to show 50 visible rows, manage the items array to also only contain approx. 50 items.
Does Angular still bind/perform dirty checking with items that are off screen?
Thanks!