Group: Forum Members
Posts: 2K,
Visits: 6.6K
|
I attempting to update the current row after a save (to get the values of some calculated columns from SQL Server). I have a method that uses AppendDataTable to update a single row. When this is called, the BO is dirtied and then I get a "do you want to save changes" message. From the user's perspective, what they see is:
- they save the record by clicking on "Save"
- Then they are asked if they want to save changes (duh, like, of course I do...I just clicked "Save"!)
Now, if they click Yes or No, it makes no difference, as the changes are fresh from the DB in any case. Cancel makes no sense as I'm doing this in AfterSave and the form has already put the BO into idle state.
So, what am I doing wrong here/how can I deal with this?
|