how to hide treeview node???
-
I think you cant actually make a node not visible (as in dissapear it). What you can do, is remove it from the tree. If you need to reference this node later, you can store it in an ArrayList for later use. Best Regards, azazel
-
removing a node will not help me.. Actually i m loading XML in a treeview and i want to change the value of elements from textboxes.... so, i will be needing childnodes while clicking parentnode but i don't want to display them(childnodes) in treeview
Do'nt draw the childelements to the treeview, you can store them as XmlElements in the tag property of the parent node and retrieve it when you need
-
Do'nt draw the childelements to the treeview, you can store them as XmlElements in the tag property of the parent node and retrieve it when you need