This question is locked. New answers and comments are not allowed.
When editing data in the GridView control, I am performing the following test:
Old Cell Value: "OldValue"
New CellValue: "New Value"
When I handle the CellEditEnded event and look at the properties of the GridViewCellEditEndedEventArgs, I see the following property values:
NewData = "New Value"
OldData = "Old Value"
However when I get to the RowEditEnded event and look at the properties for the cell that was edited, I see the following property value:
New Data = "Old Value"
Am I missing something here, or does this appear to be a valid issue?
Thanks....
Old Cell Value: "OldValue"
New CellValue: "New Value"
When I handle the CellEditEnded event and look at the properties of the GridViewCellEditEndedEventArgs, I see the following property values:
NewData = "New Value"
OldData = "Old Value"
However when I get to the RowEditEnded event and look at the properties for the cell that was edited, I see the following property value:
New Data = "Old Value"
Am I missing something here, or does this appear to be a valid issue?
Thanks....