Let me clarify this a bit more:
In the parent form I have the following BOs:
bizInventory1 -> Parent
bizInventoryItems1 -> Child
These BOs are translated via a ChildDialog into a child form which have the following BOs:
bizInventory1 -> Parent
bizInventoryItems1 -> Child
bizInventoryItemsForListView -> This is the same type of the child BO bizInventoryItems1, all new records are added to this bo and when done, the records are copied to the bizInventoryItems1, the form is close and in the parent form the bizInventoryItems1 has all records added in the child form, but the bizInventoryItems1.IsDirty is False and when I try to save the data, the child records are not saved.
I am doing it this way because in the parent form the child bo bizInventoryItems1 may have previous records that I do not want to be shown in the child form when adding more records. I tried calling the Let me clarify this a bit more:
In the parent form I have the following BOs:
bizInventory1 -> Parent
bizInventoryItems1 -> Child
These BOs are translated via a ChildDialog into a child form which have the following BOs:
bizInventory1 -> Parent
bizInventoryItems1 -> Child
bizInventoryItemsForListView -> This is the same type of the child BO bizInventoryItems1, all new records are added to this bo and when done, the records are copied to the bizInventoryItems1, the form is close and in the parent form the bizInventoryItems1 has all records added in the child form, but the bizInventoryItems1.IsDirty is False and when I try to save the data, the child records are not saved.
I am doing it this way because in the parent form the child bo bizInventoryItems1 may have previous records that I do not want to be shown in the child form when adding more records.
.Edit() in the listview.ChildFormResults() but did not made a difference, any of the new added records are never saved to the database.
Any other idea where I may start looking?
Edhy Rijo