We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 14e3192 commit 72db738Copy full SHA for 72db738
1 file changed
src/grid/ScrollManager.mjs
@@ -102,7 +102,7 @@ class ScrollManager extends Base {
102
me.scrollLeft = scrollLeft;
103
104
me.gridHeaderToolbar.scrollLeft = scrollLeft;
105
- view.scrollPosition = {x: scrollLeft, y: view.scrollPosition.y};
+ view.scrollPosition = {x: scrollLeft, y: me.scrollTop};
106
107
if (touches) {
108
if (me.touchMoveOwner !== 'view') {
@@ -163,7 +163,7 @@ class ScrollManager extends Base {
163
164
view.set({
165
isScrolling : true,
166
- scrollPosition: {x: view.scrollPosition.x, y: scrollTop}
+ scrollPosition: {x: me.scrollLeft, y: scrollTop}
167
});
168
169
0 commit comments