Hello,
I want' to put my treeView in an iFrame.
So I can't work with
var tree = $find('navTree')
So I'm trying to implement a function in the iFrame
I want' to put my treeView in an iFrame.
So I can't work with
var tree = $find('navTree')
So I'm trying to implement a function in the iFrame
function
getTree() {
return $find('navTree')
}
and now I'm trying to access the tree from then parent object like that:
tree = document.getElementById(
"iFrameTreeview").contentWindow.getTree()
var nodes = tree.get_Nodes();
But the broser reports: tree.get_Nodes is not a function
What should I do to get Access to the tree from the parent-site?
Thanks for your support.