@ -100,6 +100,11 @@ BI.ListView = BI.inherit(BI.Widget, {
},
_calculateBlocksToRender: function () {
// BI-115750 不可见状态下依赖元素实际尺寸构造的线段树会分段错误,所以不进行后续计算和线段树的初始化。
// 这样从不可见状态变为可见状态能够重新触发线段树初始化
if (!this.element.is(":visible")) {
return;
}
this._renderMoreIf();
@ -110,6 +110,11 @@ BI.VirtualGroupList = BI.inherit(BI.Widget, {
var o = this.options;
this._isAutoHeight() && this._renderMoreIf();
var height = this.element.height();
@ -93,6 +93,11 @@ BI.VirtualList = BI.inherit(BI.Widget, {
var minContentHeightFrom = o.scrollTop - o.overscanHeight;