I have 2 questions actually:
1. When i have a tree that has Overrides.NodeStyle set to NodeStyle.Checkbox is it possible to databind the checkbox? for instance if the datasource were to have a checkstate property...
2. If i am populating the tree nodes using databinding to a custom object... for instance MyNode class that contains a collection of MyNodes (Which are not related to infragistic classes at all). How can i get the MyNode object populated into the Tag property of the treenode.
1. No. You would need to add a CheckBox column into the tree in order to have a bound checkbox.
2. If you want to get the MyNode object from a particular tree node, you would use the ListObject property of the node. Does that answer your question?