解决方法
问题出在ngGrid js中的ngGridDirectives.directive’ngViewport’中.
它试图专注于’顶部’元素,这会导致闪烁/跳跃.
解决方案:寻找元素绑定鼠标滚轮
elm.bind("mousewheel DOMMouseScroll",function() { isMouseWheelActive = true; // if (elm.focus) { elm.focus(); } <-- comment out this line return true; });