On Sun, Oct 3, 2010 at 7:24 PM, Patrick Julien <pjul...@gmail.com> wrote:
> Yeah, because even with using with().  The problem is the entire
> object graph isn't there
>
> So I have a practice that has offices and each office has phones.
>
> So if I ask for offices.  It fills in the offices but the phones
> inside it are not.  This could get laborious if I need to do this
> manually for each editing activity

Use RequestFactoryEditorDriver.getPaths();


interface MyOfficeDriver extends
RequesFactoryEditorDriver<OfficeProxy, OfficeEditor> {}

MyOfficeDriver driver = GWT.create(MyOfficeDriver.class);
driver.initialize(requestFactory, editor);
requestFactory.officeService().fetchOffice(1234).with(driver.getPaths()).to(receiver).fire();


-- 
Bob Vawter
Google Web Toolkit Team

-- 
http://groups.google.com/group/Google-Web-Toolkit-Contributors

Reply via email to