Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
2387
hiding the expander
posted

Simple question:

I have an UltraTreeNode called treeNode to an existing UltraTree.  I am calling:

BindingList<DspCategoryItem> coll = new BindingList<DspCategoryItem>();

// code to popule the coll

treeNode.Nodes.SetDataBinding(coll, string.Empty);

This collection of  objects are leaf nodes in the tree.  What must be done so the expander [+] on all these leave nodes are never displayed?

Sam