Hi, I'm using an architecture very close to what is proposed in the Chris Ramsdale's article "Large scale application development and MVP" but I want to share the control of the application with a second presenter. At first the app is controlled by the AppController class but then I want to share the control with the HomePresenter class implementing also the ValueChangeHandler interface. When the AppController calls the HomePresenter's method go() it pass the RootLayoutPanel as the container. But when the HomePresenter needs to call the go() method of another presenter (said AnotherPresenter) I want to pass an internal container not the full RootLayoutPanel, for which I'm using a LayoutPanel. For some reason this is not working, and the inner container is just being cleared and not displaying what the AnotherPresenter is trying to.
-- You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/google-web-toolkit?hl=en.
