I am using controllers and subcontrollers in my application. I like the concept very much.
Usually, my subcontrollers handle the events (e.g. button clicks) on their views themselves. But sometimes, a click in subcontroller 1 interests other subcontrollers. For example, I have "root.do" with 2 subcontrollers "toolbar.do" and "main.do". If a button in the toolbar is clicked, I would like to handle that event in "main.do".
What's the best way to do that?
Best regards,
Daniel