Re: how can i get the proxy that i edited using driver.edit?

2011-06-26 Thread Colin Alworth
If one of your editors needs access to the original object, consider implementing a ValueAwareEditor so it has access to the original model. This way you can flush changes back as part of the regular editor system. If you want to make other arbitrary edits outside of the editor system, then it

Re: how can i get the proxy that i edited using driver.edit?

2011-06-25 Thread Elhanan Maayan
yea, but that means i can ever use driver.edit without using request.edit first, and driver.edit already does request.edit On Fri, Jun 24, 2011 at 8:41 PM, isern juanis...@gmail.com wrote: Just an idea, I'd try this: proxy = request.edit(proxy); driver.edit(proxy); If I got RF right, the

how can i get the proxy that i edited using driver.edit?

2011-06-24 Thread Elhanan
i know the it's not the same proxy i sent in.. and i know i need to send to a persist method i created in a requestContext. so do i need to use the onProxyChangeEvent? -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post to this group,

Re: how can i get the proxy that i edited using driver.edit?

2011-06-24 Thread isern
Just an idea, I'd try this: proxy = request.edit(proxy); driver.edit(proxy); If I got RF right, the edited reference should be the same as the one request.edit() returns, as it is already bound to that context. Greetings! On Jun 24, 1:20 pm, Elhanan elh.mailg...@gmail.com wrote: i know the