Hi,
I'm having some trouble getting an ultra tree to display check boxes when i bind it to a collection of data objects.
In my scenario, I have a BindingList of DataObjects that i want to display in an ultraTree. I also want to allow the user to check/uncheck items for later processing.
Adding the items "manually" and setting the Override.NodeStyle property works fine, but I would like to be able to bind the nodes to my DataObject list and display aditional columns.
The problem happens when I set the datasource for the UltraTree. When i do this, the tree displays the columns according to a custom built ColumnSet just fine, but completely ignores the NodeStyle property.
Is there anyway I can achieve this, or should I be looking in another direction?
You can refer to the following post, which might help..
http://forums.infragistics.com/forums/p/3759/20618.aspx#20618
Thanks, that was just what I neede.
I was looking into the node properties, but it seems that with columns, you need to work with cells and not nodes.
I managed to get the check column I needed and have it editable.
Thanks again.