jquery - Angular table performance -


im trying draw table more efficient way have directive cells complex. consist of ng-repeats example. noticed ng-repeat creates new scope. ive got nested ng-repeat wchich results in tons of scopes. noticed linking veeery slow. how optimize that?

if using angularjs 1.3 can use one-time binding operator ::

for example on ng-repeat

<ul>     <li ng-repeat="item in ::items">{{item.name}};</li> </ul> 

for more details can see link below:

https://docs.angularjs.org/guide/expression


Comments

Popular posts from this blog

java - Unable to make sub reports with Jasper -

scala - play framework: Modules were resolved with conflicting cross-version suffixes -

Passing Variables from AngelScript to C++ -