Hi,
I have a tree that lives in a WebSplitter pane. The tree is much larger than the pane size (reason for the pane!) and therefore scrolling is used to look at the tree.
When calling the scrollIntoView method of a node, if the node is out of view, the tree does not scroll to show it...
any help much appreciated! thanks heaps.
Figured it out...
the following didn't work for me:
node.scrollIntoView();
however, this did:
node.getElement().scrollIntoView()