To simplify it. I have 3 tabs with lists of items. (Country, City, Stree). In my app those are diferent things but this is to simplyfy it.
In those 3 tabs I'm listing all the countes, cities and streets. I have seperate controller for each tab. CountryController, CityController and StreetController.
What I want to achieve. When users clicks on country in first tab I wast to invoke function in CitiesControlelr that will return all the cities in given country. When your clicks on City I want to invoke function in StreetController that will return all the streets in that city.
How to achieve this "communication" between controllers? What is proper way of making it?