Lets say I have a row that can store GUID.
But I don't want my grid to show the guid but something else .... how can it be done ?
help?
There are many ways to do that.
Can you make a list of your guids and display value for each of them? If that's the case, I think using a value list is the simplest approach.
var list = grid.DisplayLayout.ValueLists.Add();
list.ValueListItems.Add(value, name);
column.ValueList = list