Hello, I've tried to use very very large data (150,000), where each element has 300px height. The whole viewport size is 800px. Code is here: <textarea> <div style="max-height: 800px; width: 400px; overflow: auto"> <ul> <li style="height: 300px;" sf-virtual-repeat="team in worldcup.teams"> <span ng-click="doSomething(); test= !test;">{{$index}}: {{team}}</span> <span>test: {{test}}</span> </li> </ul> </div> </textarea> I'm having only 111,848 items. Why is that? Thanks.