So what I am doing is binding the state of objectstatus to my view. This is the first time it happened to me where it saved successfully but my objectstatus in my detail still thinks that it is still NEW and DIRTY.
Any idea on what's going on?
Hi,
Save return a new object. So you your code should be:
obj = obj.Save();
Otherwise, you would bind the old object to the UI that is still New and Dirty.
Hi JonnyBee, thanks for the reply. Actually, it was stupid overlook - of binding name error. Oooops!
.. but your suggestion is correct that whenever you call the BO save you have to get the new object back.
Copyright (c) Marimer LLC