how updating a string list can impact the "isSavable" property in the business base object ? #4652
-
Hello, How can I impact the "issavable" and "isdirty" properties of a "BusinessBase" (in my example: "ReportOperationEdit") by modifying a list of strings? Currently, I wanted to use the "MobileList" (MobileList) class, but it's logical that this class doesn't report any events, so it can't work. I've searched with the classes in csla.core, but I feel like I need to implement an IMobileObject for this to work. Thanks for your help. `
` |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
I would use an Editable Root collection. |
Beta Was this translation helpful? Give feedback.
I would use an Editable Root collection.
You could inherit from BusinessListBase or DynamicListBase.
Instead of using mobile list, your child object has a string property.
Look at the sample code available here, ProjectTracker sample might help