【发布时间】:2010-10-19 07:42:54
【问题描述】:
我正在拦截 RadGrid 的更新操作。像这样
e.Canceled = true;
GridEditableItem item = e.Item as GridEditableItem;
Hashtable dictionary = new Hashtable();
item.ExtractValues(dictionary);
这为我提供了 HashTable 中的更改值。问题是我想访问当前行的所有元素。我该怎么做
【问题讨论】: