|
Group: StrataFrame Developers
Posts: 3K,
Visits: 2.5K
|
You'll need to go to the BOMapper and configure the business object. Inside the configuration, select "Single Event for All Fields" for the "Changed Events" type. After rebuilding the partial class for the business object, you'll have a new event called FieldValueChanged. Add a handler to this event (within the business object itself) and within the handler add the line "Me.Modified = DateTime.Now" Whenever you change a field on the business object, it will go through this event and set the "Modified" field to the current time. When you save the record, that fieldl will also be updated back to the server.
|