Hide Tree Node

Hello.



Is it possible to hide a node on the tree? I would like only certain items to be visible, but I want to be able to bring them back if needed.



Thanks in advance.

Unfortunately it not possible ( to be fully correct , it not possible to be done through API, it possible to access HTML elements related to nodes and hide them, but it doesn’t sounds as good solution for me )You may look at TreeGrid component, its filtering ability allows to hide|show sets of items�

One more solution for dhtmlxtree is using two XML description and reset the tree to necessary one by�� � tree.deleteChildItems(0);� � tree.loadXMLString(new_item_set);For not big trees, it will work pretty fast.