|
Group: StrataFrame Developers
Posts: 3K,
Visits: 2.5K
|
As for your first question, Scott, there is a corresponding property on the form called IncludeInFormEdit that accepts an enum value. By default, it is set to PrimaryBusinessObject which is why only your B1 is editing. There are two other values that you can set that property to: DeterminedByBusinessObject and AllBusinessObjects. If you set it to AllBusinessObjects, then all business objects on the form, will be edited when you call Edit() on the form. The DeterminedByBusinessObject property is the one that will use the individual IncludeInForm properties on the business objects to determine whether the business objects will be included in the edit. So, you'll need to set the property on the form to DeterminedByBusiness object for it to test that Boolean property on the business objects.
|