Skip to content Skip to sidebar Skip to footer

Angularjs, Ng-repeat With Ng-include Not Rendering

Hi I am starting to learn angular and I'm running into a problem when I use a combination of ng-repeat with ng-include. No matter what I do I cannot get the templates to render. I

Solution 1:

I quote Your code

<divng-include="{{workspace.TemplateUrl}}"></div>

should be

<divng-include="workspace.TemplateUrl"></div>

since it is a ng statement.

Post a Comment for "Angularjs, Ng-repeat With Ng-include Not Rendering"