9

I have created an XtraTreeList control that is bound to my bindingSource and it uses a list of custom objects. The MultiSelect property is set to true, so when the user selects multiple nodes I want to define what objects are bound to them. But unfortunately I haven't found any property related to contained data (except the Data which is obsolete and is always null). I also tried to use TreeListNode.GetValue, but it only gives me a displayed value and not the object itself

Is there a way to get access to the object bound to node in XtraTreeList?

The last resort is to use Unbound mode and to create them manually, but I would like to know if there is a simple solution for that

username
  • 3,378
  • 5
  • 44
  • 75

1 Answers1

22

Use the TreeList.GetDataRecordByNode method for this purpose.

DevExpress Team
  • 11,338
  • 2
  • 24
  • 23