I have been observing the decrease in render performance of angular ng-repeater as number of rows increases
Here is my experiment. http://jsbin.com/quyofifa/1/edit?html,js,console,output
When you run the experiment you will find that as number of rows increases time taken to render the row(DOM) increases. I measure this statistic by creating a directive which will execute when each row rendered and log time difference into console.
So here is my question why it is happening (internal detail) and how I can resolve this issue. I tried using filter limitTo but I could not find satisfactory result although it may a solution to pagination.