Hi,
I have a third party grid that is binded to an object. Each column is binded to a property of the object. Now, I get the selected row from the grid and cast to the object like:
var item = myGrid.ActiveRow.ListObject as Bench;
item.RequestedBy = WindowsIdentity.GetCurrent().Name;
_controller.Process(item);
The problem is that as soon as the item.RequestedBy property is changed the Grid displays the username in the column. This is because the row is binded to an object. What can I do to not show the username in the column as soon as the value is assigned.