The problem is ngGridDirectives.directive'ngViewport'in ngGrid js.
He tries to focus on the "top" element, and this causes a flicker / jump.
Solution: find element binding mousewheel
elm.bind("mousewheel DOMMouseScroll", function() {
isMouseWheelActive = true;
return true;
});
source
share