Hello @all:
I had to find the solution by my own.
If you're interested in - here you are:
This function has to be integratet into the treeView page.
function
getTree() {
var tree = $find('navTree')
var nodes = tree.get_allNodes()
return nodes[0].get_treeView()
}
In the parent frame you've to replace
var tree = $find('navTree')
with
iframeTreeView.getTree()
where iframeTreeView is the name of the iframe, where the tree is located.
Regards
Christian