This question is locked. New answers and comments are not allowed.
Hi,
I am trying to find out a way to check if my row has changed.
Normally on the RowValidating event args you have a property "OldData" which gives you the old data the row is based on.
But when I check this property it is already updated with the new data, so I can't used this to check if the row has changed.
Maybe the old data is updated already because I use TwoWay binding, but when I don't use TwoWay binding, the grid values aren't updated.
Now I'm using a workaround with the CellEditEnded event and compare the NewData and OldData property, but I don't think this is the way. Can somebody tell me which is the way to go?
Thanks in advance