You might have to response = context.edit(response) before modifying the academicYearList. Is the new AcademicYear sent to the server?
Also, from the doc: RequestFactory automatically sends the whole object graph in a single request. In this case, the implementation of Person.persist() on the server is responsible for persisting the related Address also, which may or may not happen automatically, depending on the ORM framework and how the relationship is defined. — http://code.google.com/webtoolkit/doc/latest/DevGuideRequestFactory.html#relationships It's your responsibility to save the new AcademicYear on the server (I don't know JDO enough to tell whether it will do it for you or not). -- 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.
