Can anyone point me to some example code or explain how I might listen for an event in a custom component that is broadcast by another custom component?
The basic nesting of my components in the application are as follows: <mainapp> <viewer> <filter/> <detailsPanel> <map/> <list/> <summary/> </detailsPanel> </viewer> </mainapp> I broadcast an event in the filter component which I want to listen to in the map component. Should I be trying to listen in the viewer and broadcast to the detailsPanel and the broadcast from the detailsPanel and listen in the Map component? I seem to produce circular refs and stack overflow. Any help would be very gratefully received. Thanks.

