On Apr 13, 2:01 pm, Thomas Broyer <[email protected]> wrote:
> This is "by design". The editor framework is built around a "flow
> synchronization" 
> pattern<http://martinfowler.com/eaaDev/FlowSynchronization.html>,
> where you only modify the edited object when you flush() the editor (each
> internal HasDataEditor.IndexedEditor is given an editable proxy).
> This means you'd have to push changes into a queue and apply all of them on
> flush(); similar to how the CellSampler sample 
> works:http://gwt.google.com/samples/Showcase/Showcase.html#!CwCellSampler
> This can hardly be entirely automated... (but there sure is room for
> improvement!)


Ok thanks Thomas.  I must admit I can't see the point of disallowing
direct editing like this.
Couldn't this be done via
myHasDataEditor.getEditors().get(index).setValue(someProxy)?

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