Paul McNary wrote: > Hello > > I have set up a 1 to many form. > The 1 being input fields and the many being an updatable grid. > > I have a Parent biz object and a child biz object. > > The bizObj logic creates the new grid record and I enter data in it. > > I then hit a Save button that does a self.Form.save() > > That saves the one part of the record but not the many part that is in > the grid.
self.Form.save() will call the PrimaryBizobj's save() method. That bizobj will, as part of saving the record, call saveAll() on any child bizobjs. So, it sounds like you don't have the child set as such, with a: primaryBiz.addChild(childBizobj) call Paul _______________________________________________ Post Messages to: [email protected] Subscription Maintenance: http://leafe.com/mailman/listinfo/dabo-users Searchable Archives: http://leafe.com/archives/search/dabo-users This message: http://leafe.com/archives/byMID/[EMAIL PROTECTED]
