Browse Source

Pull request #238967: BI-126486 fix: 分组表滚动条拖不动【样板客户】

Merge in DEC/fineui from ~DAILER/fineui-decision:release/11.0 to release/11.0

* commit '9f92e1cb715c50e1f2b46bd20443d7560655ea10':
  BI-126486 fix: 分组表滚动条拖不动【样板客户】
research/test
Dailer-刘荣歆 1 year ago
parent
commit
eeebb1a623
  1. 4
      src/base/collection/collection.js

4
src/base/collection/collection.js

@ -345,7 +345,7 @@ BI.CollectionView = BI.inherit(BI.Widget, {
return;
}
this._scrollLock = true;
this.options.scrollLeft = BI.clamp(scrollLeft || 0, 0, this._getMaxScrollLeft());
this.options.scrollLeft = BI.clamp(scrollLeft || 0, 0, this._getMaxScrollLeft() || scrollLeft);
this._debounceRelease();
this.element.scrollLeft(this.options.scrollLeft);
this._calculateChildrenToRender();
@ -356,7 +356,7 @@ BI.CollectionView = BI.inherit(BI.Widget, {
return;
}
this._scrollLock = true;
this.options.scrollTop = BI.clamp(scrollTop || 0, 0, this._getMaxScrollTop());
this.options.scrollTop = BI.clamp(scrollTop || 0, 0, this._getMaxScrollTop() || scrollTop);
this._debounceRelease();
this.element.scrollTop(this.options.scrollTop);
this._calculateChildrenToRender();

Loading…
Cancel
Save