AngularJS 1.4 ngNewRouter - How to use partial views?

263 views Asked by At

I'm working on a project where I need to use the AngularJS 1.4.3. The problem is that I have to use the new routing of course, but on a view I need to use another partial views. E.g. I have a Home view, and this contains 2 dynamic table generated by data from a REST call. These tables should be partial views depends on the user role, etc. Because the 1.4 is brand new I've not found any correct tutorial, or documentation, how can I create these type of sub-components.

Please help me, Thanks in advance

1

There are 1 answers

1
FloydThreepwood On BEST ANSWER

Since nested views, and therefore ng-viewports in views do not work at the moment, ng-include is the current method of choice to accomplish this.

Edit:

I'am currently also working on a 1.4 project and we decided to use the next sprint to move to the ui router again, because of ngNewRouters many problems.