I have a tree panel and am trying to do an animated scroll to certain locations. I\'m doing something like this:
myTreePanel.getView().getEl().scrollTo(\'top\',
Not surprising. They use their own scrollbar. The correct code would be:
myTreePanel.verticalScroller.setScrollTop(yCoord);
However, it doesn't support animation either. So I recommend to get rid of custom scrollbar as I've described here and use your original code.