Group: StrataFrame Developers
Posts: 6.6K,
Visits: 6.9K
|
It looks like Ivan is probably on the right trail here. By default, when you call Edit on a BO, the IsDirty state will become True. You can prevent this a couple of ways. Set the property like Ivan mentioned, or don't use editing states at all, which is the approach that we generally use. Instead of requiring the user to click 'Edit', we will always leave our fields enabled (like the StrataFlix sample) and then when a change is made, we will handle the IsDirtyChanged event and take whatever actions necessary to preset Save, etc.
|