Hi, we have a grid which is binding to a list of object.
In the object, there is a key and relatedKey property. The relatedKey is a referece to the key of another object.
For example,
ObjA: Key = 1 RelatedKey = null
ObjB: Key = 2 RelatedKey = 1
Now my question is, is it possible for the UltraWinGrid to display hierarchy structure so that ObjA will be the parent of ObjB like this?
+ ObjAL ObjB
Kai
Hi Kai,
There's no way for the grid to related the object key to an actual object. In order for this to work, ObjA would need to expose a property that returns a List or BindingList of objects.