Hi,
I'd like to put several, undependent compiled widgets on my JSP and let them interact. Is there a way to access the same dispatcher from every module/widget?
Dispatcher is a singleton. Or do you have a page which has a few iFrames and in each iFrame is a separate GXT application? Can you explain your issue more? (ie. I use many modules in my application, but they are within a single Viewport, so it is the same "application").
There are several GXT Applications. They aren't located in different iframes, but each has its own EntryPoint and compiled javascript output embedded in page. Now the question is how to communicate, if widget1 calls Dispatcher.get() and next widget2 calls Dispatcher.dispatch() there's a nullpointer, what leads me to the conclusion every widget uses its own dispatcher, though events of widget2 are "disturbing" widget1 in some way, causing unexpected behaviour in history-navigation.