Hi,
I would like to see and use the old- and new values of the Items when the following functions are raised:
RadGrid1_ItemInserted(object source, GridInsertedEventArgs e)
RadGrid1_ItemUpdated(object source, GridUpdatedEventArgs e)
RadGrid1_ItemDeleted(object source, GridDeletedEventArgs e)
The reason is that the administrator wants to keep track of all changed data, true an email. By viewing wich data exactly has changed, inserted or Delete (firstName).
(FirstName, LastName, Email, Position,)
Something like this below:
if (Convert.ToString(old_values[key]) != Convert.ToString(new_values[key]))
I found different solutions but didn't quit cover the challenge I encounter:
Link1
Link2
Link3
Link4
Thanks,
Idar