I'm still messing around with custom events. If I have a popup embedded within another popup and want to dispatch an event from the top-most component down to the parent application, do I have to dispatch it to the first popup, and then redispatch the same event to the parent app?
Is there any way to dispatch an event, but have it automatically go through all components down to the root? Obviously I've tried, but events seems to stop at the parent component, and they are not automatically delivered to their parent's parent, etc. What I'm thinking of doing instead is having each popup send a message to the root to open other embedded popups, so that they are ALL created from the root application rather than the popup. In essence, a custom popup manager. But I'm still curious if there's a way around the above scenario. Thanks, - Chris

