Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to get access to the object bound to node in DevExpress XtraTreeList?

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

like image 717
username Avatar asked May 20 '11 12:05

username


1 Answers

Use the TreeList.GetDataRecordByNode method for this purpose.

like image 123
DevExpress Team Avatar answered Sep 28 '22 21:09

DevExpress Team