Reputation: 2821
I'm working in a web application using AngularJS + SpringMVC. I have some constraints as using pure HTML view pages, so, server-side frameworks as Tiles are not an option.
My gess is that angularJS ng-view
tag is not powerfull enouth to develop complex layouts.
Could someone propose some client-side alternative to develop html layout templates?
Thanks in advance!
Upvotes: 0
Views: 222
Reputation: 7809
I think you are looking for ui-router by the AngularUI team. It supports multiple views, nested views and inheritance for views. This definitely helped me creating more complex template structures.
Upvotes: 1