You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Method _calcRowHeight doesn't calculate the height of the very first row because sibling.offsetTop equals to 0 and rowElement.offsetTop equals to 0.
When average rowHeight is calculated it divides sum of row heights by row number self.rowHeight = height / trCount. As the first row height is 0, but this row is counted in trCount, it leads to the wrong result of rowHeight.
The text was updated successfully, but these errors were encountered:
Method _calcRowHeight doesn't calculate the height of the very first row because sibling.offsetTop equals to 0 and rowElement.offsetTop equals to 0.
When average rowHeight is calculated it divides sum of row heights by row number self.rowHeight = height / trCount. As the first row height is 0, but this row is counted in trCount, it leads to the wrong result of rowHeight.
The text was updated successfully, but these errors were encountered: