How to $state.go()
What would always work is the full state definition: In doc there are defined these options, but they depend on CURRENT state: to stringAbsolute state name or relative state path. Some examples: $state.go(‘contact.detail’) – will go to the contact.detail state $state.go(‘^’) – will go to a parent state $state.go(‘^.sibling’) – will go to a sibling state $state.go(‘.child.grandchild’) … Read more