Hi Peter,

This is perfectly doable with angular. I would have to profile your app to 
point out the exact culprit
the included templates are also missing, the problem might be in there to 
begin with!
I can say more after I see your problem in action. Can you build an plunk?
one thing stands out, you are determining the column types for every row 
over and over,
can the rows differ from each other? 

Also caching some things in the scope will speed stuff up.
try this:

                <td ng-repeat="column in columns" 
ng-init="template=getTemplate(item,column); model = getModel(item, column)">
                    <content-control template="template" 
content="model"></content-control>
                </td>

It will speed stuff up, I just don’t know how large the impact will be in 
your case.

Regards
Sander
​

-- 
You received this message because you are subscribed to the Google Groups 
"AngularJS" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
To post to this group, send email to [email protected].
Visit this group at http://groups.google.com/group/angular.
For more options, visit https://groups.google.com/d/optout.

Reply via email to