0
votes
0answers
13 views

Angulajs - creating a directive while using ui-router

I am trying to decipher directives... although I viewed and implemented many AngulaJS simple stack tutorials, I am unable to get it to work while using ui-router, not sure why. Too many attempts have ...
0
votes
1answer
89 views

Angular ui-router's ui-sref created dynamically in a directive?

I am working on a line of business application that is using Angular to create a SPA around a Node.js api server. I decided on using ui-router cause of the state-machine and their intuitive way of ...
3
votes
2answers
484 views

How can I use ng-animate with ui-view rather than ng-view?

I am using angular-ui-router with angularJS v1.2 and would like to implement custom page transitions. How can I use ng-animate with ui-view (from angular-ui-router) rather than ng-view (which would be ...
1
vote
0answers
165 views

angular-ui-router dynamic menu: TypeError: Cannot call method 'match' of undefined while rendering menu

i am new to angular and angular-ui-router and trying to create a menu. I tried angular-ui-router and think that it fits for my needs. now i have a problem while creating the menu with the ui-router ...
3
votes
2answers
142 views

Angular directive not picking up service data

My service NavData angular.module('navData', []). factory('NavData', function() { var navData = {}; navData.depth = 0; navData.category_id = ""; ...
1
vote
1answer
973 views

How to get angular ui-router's ui-sref to work, when inside a directive's template?

Basically, I am trying to change/customize the behaviour of the ui.bootstrap.accordion. All is working, except for integration with ui-router. Here's the way I want to use the accordion: ...