Hello all,
I'm hoping that I'm just doing this wrong, but I can't seem to change a GUID field's value with a FeatureDataGrid. I think this is the way to do it:
FeatureDataGrid.BeginEdit();
FeatureDataGrid.SelectedGraphics[0].Attributes["NAME_GUID"] = newGUID;
FeatureDataGrid.CommitEdit();
If I check the attribute before and after this code is executed the GUIDs are different. However, this change does not persist.
So, am I just doing this wrong, or is there a problem with editing GUIDs?
Thanks,
Will