Re: RequestFactoryEditorDriver returns empty array for getPaths

2011-09-30 Thread Thomas Broyer
Are you sure the editor driver sees the ListEditor? Set a breakpoint in PathCollector to see which editor it visits (this is done when you initialize() the driver), and try to understand why it doesn't collect the path for your list (note that the PathCollector only collects paths for

RequestFactoryEditorDriver returns empty array for getPaths

2011-09-29 Thread Maiku
I was banging my head against the wall trying to figure out why my ListEditor is not displaying any objects from a ListLanguageProxy in my ConfigProxy. I then realized I wasn't using the .with command. So I set it up with the standard idiom: .with(view.editorDriver().getPaths()).fire(); But

Re: RequestFactoryEditorDriver returns empty array for getPaths

2011-09-29 Thread -sowdri-
.with(view.editorDriver().getPaths()).fire(); Assuming: // on the server class Config ... { ListLanguage languageList; } This could be simply be .with(*languageList*).fire(); I thought maybe it wasn't working because I use using the simple version of