I am using the cloud version of Mongoose.
I have a parent form that opens another form as modal child with container type of Popup Window. The Popup Window form adds to a collection in the parent form. It uses this command.
ThisForm.ParentForm.GetSecondaryIDOCollection(4).New();
When I come back to the parent form the secondary collection has data in it. I can see the data displayed on the form. I also show a message box of the count of the number of records in the secondary collection.
The problem occurs when I save the Primary collection. As soon as I do that, then the records from the Secondary collection disappear.
Has anyone ever experienced this? Does anyone have any suggestions on what to try?
My workaround is to save the records in the Secondary collection to a List before I save the Primary collection. Then add the contents of the List back to the Secondary collection after the Primary collection is saved.