I have a tree that is databound to a hierarchial business object which is the datamodel for my screen
as the user goes through his workload I directly manipulate the object model that the tree is bound to.
For the most part this works... but the problem im facing is when a new object is added to the graph then as expected the tree immediately renders the new node.. but I need an event I can hook into to do some initialization on the newly created ultratreenode.
When i initially bind to the tree I do my ui logic for the nodes in the AfterDataNodesCollectionPopulated event but I can not find an event which occurs when an individual node is created.
Thanks
The InitializeDataNode even of the tree should be firing when you add a node to your data source.
Works like a charm.. thanks.