Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have dynatree with fixed height and vertical scrollbar.

node.activate(); selects the node i'm searching for, but doesnt move the vertical scrollbar, so i have to scroll manualy to see active node.

How do i scroll it programmaticlly?


Thanks to mar10, I solved this problem:

var activeLi = node.li;
$('#tree').animate({
    scrollTop: $(activeLi).offset().top - $('#tree').offset().top + $('#tree').scrollTop()
}, 'slow');
share|improve this question

2 Answers

up vote 8 down vote accepted

Dynatree does not have a built-in scrollTo functionality. But you should be able to use one of the existing methods and plugins, once you have the DOM element that you want to make visible.

In your case, you already seem to have a node object, so you can get the the associated <li> and <span> tag using node.li or node.span.

In general you can get the active node at any time by calling

var node = $("#tree").dynatree("getActiveNode");
// or
var node = $("#tree").dynatree("getTree").getActiveNode();

then get the associated DOM element:

var activeLI = node && node.li;

or handle the activation event:

onActivate: function(node) {
    var activeLI = node.li;
    ...
}

Once you have the element, use a standard method:

Scroll to a div using jquery , jQuery scroll To Element , How to scroll to an element in jQuery? , ...

share|improve this answer
For anyone else who comes across this in the future, I had an issue where node.li was undefined in IE. In my case node.span was defined (but i didn't realize this immediately). It's probably a good idea to check for both, incase one is undefined. – Gordon Bailey Feb 28 at 15:48

I had a similar problem, and have not been able to get the scrollTop to work as stated in the example above. I fixed it by changing the selector from '#tree' to '.dynatree-container':

$('.dynatree-container').animate({ // animate the scrolling to the node
  scrollTop: $(activeLi).offset().top - $('.dynatree-container').offset().top + $('.dynatree-container').scrollTop()
}, 'slow');

This should get you going and save a few hours of frustrataion (:

By the way, I am using dynatree version 1.22 and jquery 1.8.3 and jquery ui 1.9.2.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.