1
vote
2answers
26 views

Hide Parent's sbling ui-view quadrant when in a child state

When I go to a child state, I want to hide a ui-view component of a quadrant ui-view in root state. How can achieve this. ##index.html <div ui-view="a"> </div> <div ui-view="b"> ...
0
votes
0answers
40 views

Same modal from different states

I'd like to achieve that when a modal dialog pops up then the background will be the last active page. I'd like to organize my code around states, so I would prefer those kind of solutions which use ...
0
votes
0answers
35 views

Angular UI Router redirect when using child states with tabs

I'm using ui-router with angular and having trouble routing back to the parent view when using ui-bootstrap tabs. The navigation is at the top of the app is using for example www.appname.com/route ...
0
votes
1answer
24 views

$state changes but the view don't - AngularJS

I have this config for my states: $stateProvider .state('login', { url: '/login', templateUrl: 'scripts/login/login.tpl.html', controller: 'LoginController', ...
0
votes
0answers
43 views

ui-router issue of state not assign properly it works after refresh

I have used ui-router in my app. Explaination of Issue: from init controller i have open bootstrap modal as form and after form saved its takes id of row inserted and redirect using $location.path ...
1
vote
2answers
5k 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: ...
1
vote
1answer
2k views

opening a modal in a route in AngularJS with angular-ui-bootstrap

I am trying to do what was essentially answered here Unable to open bootstrap modal window as a route Yet my solution just will not work. I get an error Error: [$injector:unpr] Unknown provider: ...
3
votes
2answers
1k views

Angular ui-bootstrap tabs not rendering ui-view

I am upgrading an existing angular app to all the latest versions of angular (v1.2.13), ui-router (v0.2.8), and ui-bootstrap (v0.10.0). I have nested views that have multiple named views. One of the ...
1
vote
1answer
1k views

AngularJS UI-router, Change URL when paging

I have an Angular JS project using Angular UI-Router which is going great but I am trying to implement the UI Bootstrap pagination directive and can't work out the correct strategy. I have a table of ...
4
votes
2answers
2k views

Doubly nested views : UI-Router or UI-Bootstrap tabs / accordion?

I am a total Angular (and JS) nebwie (with plenty of other s/w development experience, however). I want to develop something like this: (with apologies to @PhillipKregg for borrowing his excellent ...
0
votes
0answers
65 views

ui-router: how to avoid a view re-invoking itself

I have multiple sibling-views at the root level like so: <div> <div ui-view="carousel"></div> <div ui-view="home"></div> ... </div> I've rigged a carousel ...
1
vote
1answer
393 views

Closing a modal automatically on navigation (when clicking an anchor)

I'm using angular-ui modal in my webapp. one of models display many links (anchor elements) that navigate to various parts of the app. the modal can be closed as usual with modal.dismiss() or ...