Have a user object reference in the parent.
catch the click update button event, put the user object into the
parent via a setter,
advance the page to the edit page, and then extract the values from the parent.

Further if the two widgets you have  (list and edit) are singletons,
you can just reference each other.

i.e. from the list panel click handler, something like this.
editPanel.get().setCurrentUser(this.getSelection);

where the get() returns the editPanel singleton.  I've seen this used
in some GWT examples.  Should work fine since the client packaged code
gets compiled to js and run in the browser, unlike the scope of a
server side singleton.

--~--~---------~--~----~------------~-------~--~----~
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
-~----------~----~----~----~------~----~------~--~---

Reply via email to