There is currently no way to put a GWT Widget into multiple places, either within the same Panel or in another Panel. GWT widgets map to a native DOM element instance, and DOM elements cannot be attached to multiple locations on the page. What you would need is a presenter that can map to multiple widget instances. Then you can update the presenter, which updates all of the widgets in turn.
Thanks, John LaBanca [email protected] On Thu, Oct 28, 2010 at 11:15 AM, Jero <[email protected]> wrote: > Hello! I have the following problem .. I am using StackLayoutPanel and > when I try to add a child of the same instance of another stack will > not let me and I remove his head and child. > > The question is how I can make my stack allows many children of the > same instance? > > I tried to make a wrapper of the children by putting them in another > LayoutPanel, are all the heads, but it only added the last child ah > the last head. > > Thank you very much! > Jero. > > -- > 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]<google-web-toolkit%[email protected]> > . > For more options, visit this group at > http://groups.google.com/group/google-web-toolkit?hl=en. > > -- 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.
