I have the following
class LookupItem
{
public Guid Id {get;set;}
public string Description {get;set;}
}
class SomeOtherClass
{
public int Key {get;set;}
public Guid LookupItemId {get;set;}
public string SomeProperty {get;set;}
}
Now.
The LookupItem class will be a part of a collection (or lookup list) e.g. List<LookupItem>
The SomeOtherClass is the selectedObject of the propertygrid
I have looked through the samples such as https://docs.telerik.com/devtools/winforms/knowledge-base/propertygrid-dropdown-editor
and whilst I can get the combobox or RadMultiColumnComboBox to display when editing, I need to be able to show the description value of the selected lookupitem in the propertygrid item. Currently its displaying the LookupItem.Id which is a Guid.
Any ideas? The simplest will suffice