I was banging my head against the wall trying to figure out why my ListEditor is not displaying any objects from a List<LanguageProxy> 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 then found out that the getPaths() method is returning an empty array. Is this a known issue (unlikely) or have I set something up wrong (more likely). Here is a rough outline of my setup for this editor: * ConfigPresenter implements Presenter * ConfigView implements Editor<ConfigProxy> and contains getter methods annotated with @Path * ConfigViewImpl implements ConfigView and contains the interface that extends RequestFactoryEditorDriver<ConfigProxy, ConfigView> I thought maybe it wasn't working because I use using the simple version of Driver.initialize(editor) instead of Driver.initialize(RequestFactory, editor) but after changing it (granted I had to do it in a rather contrived way as trying to initialize the Driver from the Presenter like I was previously doing wouldn't work in this case) the getPaths() still returned an empty array. Is there a step that I am missing? -- 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.
