Hello, everybody!
I'm confused with latest MVP pattern. My problem is:
Let's say I have main layout which consists of several widgets.
Something like this
<g:DockLayoutPanel unit='EM'>
<g:north size="4">
<my:MyNorthWidget/>
</g:north>
<g:west size="20">
<my:MyWestWidget/>
</g:west>
<g:center>
<my:MyCenterWidget/>
</g:center>
</g:DockLayoutPanel>
So, I have three widgets- MyNorthWidget, MyWestWidget and
MyCenterWidget. I would like to have a presenter (Activity) for each
of them.
But I have only one Place, which means I may have only one Activity
and this Activity is aware about all widgets. Is there a way to make
widgets reusable?
Thank you,
Andrey
--
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.