Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
RadGrid の更新操作を傍受しています。このような
e.Canceled = true; GridEditableItem item = e.Item as GridEditableItem; Hashtable dictionary = new Hashtable(); item.ExtractValues(dictionary);
これにより、HashTable で変更された値が得られます。問題は、現在の行のすべての要素にアクセスしたいということです。それ、どうやったら出来るの
交換する場合
item.ExtractValues(dictionary);
と
e.Item.OwnerTableView.ExtractValuesFromItem(dictionary,item);
辞書にすべての要素が含まれている必要があります。