I have a parent controller that manages the partial in ng-view. It has 5 tabs, each tab has a form. Each form has it's own controller.
I am maintaing a variable in the parent scope. I want to modify it in one of the child controller's scope so that other controller's also view the change.
How is it possible ? Will a statement like $scope.sharedProperty = 5
make the one in parent as 5, or create a new one with that value in child scope?