I have a problem with a custom directive that I wrote to simulate a tab view in angular. This directive has only a method to redirect from a state to another.
This directive works fine.
The template of the directive is a div
with a uib-tabset
and some tabs that contain the views to show them.
This works fine.
Now I need this feature: from a view in a tab, I need to change view with a state.go(view)
and I must also go to the tab which contains that view.
I tried different solutions that I found here or in other forums, but probably my requested feature is different from others.
Thank you.