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
Current behavior:
In my application, I use VirtualScroll and infiniteScroll.
Occasionally the height of VirtualScroll will not be updated and the following record may be hidden.
In the current code, the height of VirtualScroll is mother number of denominator. Then, as the height becomes very high, the response to the update of the height becomes bad.
The situation in my application is as follows.
lastCell.record: 135
totalRecords: 143
percentToBottom: 0.9507042253521126
percentToBottom > .995 => false
newHeight: 33356
diff: 4408
difference: 0.25 (fixed value)
diff > (newHeight * difference) => false
Despite the addition of 4408px in height, the height of VirtualScroll did not change.
The text was updated successfully, but these errors were encountered:
Thanks for the issue! This issue is being locked to prevent comments that are not relevant to the original issue. If this is still an issue with the latest version of Ionic, please create a new issue and ensure the template is fully filled out.
Ionic version: (check one with "x")
[ ] 1.x (For Ionic 1.x issues, please use https://github.com/ionic-team/ionic-v1)
[ ] 2.x
[x] 3.x
I'm submitting a ... (check one with "x")
[x] bug report
[ ] feature request
[ ] support request => Please do not submit support requests here, use one of these channels: https://forum.ionicframework.com/ or http://ionicworldwide.herokuapp.com/
Current behavior:
In my application, I use VirtualScroll and infiniteScroll.
Occasionally the height of VirtualScroll will not be updated and the following record may be hidden.
Related code:
https://github.com/ionic-team/ionic/blob/master/src/components/virtual-scroll/virtual-util.ts#L533
In the current code, the height of VirtualScroll is mother number of denominator. Then, as the height becomes very high, the response to the update of the height becomes bad.
The situation in my application is as follows.
percentToBottom > .995
=> falsediff > (newHeight * difference)
=> falseDespite the addition of 4408px in height, the height of VirtualScroll did not change.
The text was updated successfully, but these errors were encountered: