I have three links and three controllers for each three link.
But, same HTML page need to show. Just need to process (in controller) and reload that page on each click of that link.
If I create directive to separate logic into directive JS/html then, problem is, how to reload the directive from controller ( shared scope is not work as , need scope object updated value at LINK function and not in html).
one option is - keeping watch flag in directive and reload based on it.
can any one suggest , some right approach in angular for same, do I have to keep one html page and different controllers OR directive to include in separate HTML page and reload directive from controller through watch ?