Re: Recursive Editors

2011-07-08 Thread Thomas Broyer
You need a *subeditor* for the foos. I.e. have FooEditor (implements EditorFoo) contain a subeditor for @Path(foos), of type CompositeEditorListFoo, Foo, FooEditor (or ListEditorFoo, FooEditor). -- You received this message because you are subscribed to the Google Groups Google Web Toolkit

Re: Recursive Editors

2011-07-08 Thread Jeff Larsen
Thanks Thomas and Gal. Now I'm getting. [ERROR] [editorsampleproject] - Cycle detected in editor graph. Editor type com.google.gwt.editor.client.adapters.ListEditor at path foos can be reached again at path foos..foos I'm probably just going to abandon this and just manually get/set the

Recursive Editors

2011-07-07 Thread Jeff Larsen
I do GWT.create(Driver.class) I break the heap. I what is the correct way of doing recursive editors with collections? Thanks -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To view this discussion on the web visit https

Recursive Editors

2011-07-07 Thread Gal Dolber
class Foo{     String foo;     ListFoo foos; //getters setters ommited for brevity } I've tried making FooEditor implement EditorFoo and CompositeEditorFoo, Foo, FooEditor, but then when I do GWT.create(Driver.class) I break the heap. I what is the correct way of doing recursive editors