Currently, my application is pulling 100 items per page and implementing a custom pagination solution by making AJAX calls for the next set of items. The data retrieval process takes around 400ms, however, there seems to be a delay in rendering the display. I suspect that the issue may lie with the ng-repeat
function. Since I do not have a column containing all unique items, using track by
is not an option for me. Although some suggest using limit
, it is unnecessary as I am already utilizing server-side pagination. How can I optimize the render time under these circumstances?