This is the code I'm using to extract the information from the grid.
Code: Visual Basic.NET
Dim [text] As String = String.Format("Cell Changed: Key = {0}, Field = {1}, New Value = {2}", item.Key, cell.Column.DataField, cell.Value)
extracted from the grid example.
I'm using the Excel style to activily edit the cells, but I'm also using a sort on each column. The code works fine until I sort one of the columns. The problem then becomes the item.key no longer matches the record id. It becomes out of sink. Is there another way to do this?