Hello,
Another Livecycle question..
I have a managed collection of Companies. Eeach company contains a list
of employees.
The Company-object and Employee-object are Managed objects, tagged with
the [Managed] metadata tag. They each have
an associated destination on the server (configured in the
data-management-config.xml). There exists a one-to-many managed
association between
these two objects.
When I add a new Employee to the managed arraycollection "companies"
like this :
Employee newEmployee = new Employee("John Smith", "Engineer");
companies.addItem(newEployee);
companyDS.commit();
Should this result in a createItem() in the EmployeeAssembler ?
Or should I explicitly call employeeDS.createItem(newEployee); ?
Thanks for your help..
Bart