I intercept an update operation for RadGrid. like this
e.Canceled = true;
GridEditableItem item = e.Item as GridEditableItem;
Hashtable dictionary = new Hashtable();
item.ExtractValues(dictionary);
This gives me changed values in a HashTable. The problem is that I want to access all the elements of the current row. How to do it
source
share