dhtmlxTree

I want to get access to each and every element in the tree hierarchy…so that I can update them.

How do I do that?

There is no specific itterator, but you can use next

    var ids=tree.getAllSubItems(0).split(",")
    for (var i=0; i<ids.length; ids++){
       //any action for item with id == ids[i]
}