For our application, we are utilizing AngularJS 1.6.4 to display a large number of rows on a single page. However, when it reaches around 7K entries, the page starts hanging. To tackle this issue, we have opted for one-time binding for those specific pages. Unfortunately, the double colon (::) notation does not seem to be functioning as expected.
Previously, the HTML code snippet for the list looked like this:
<ul>
<li ng-repeat="item in items">{{ item.name }}</li>
</ul>
We modified it to:
<ul>
<li ng-repeat="item in ::items">{{ ::item.name }}</li>
</ul>
However, the changes did not yield the desired outcome.
Could it be possible that this functionality has been removed in version 1.6.4? For more details, visit: