-
Notifications
You must be signed in to change notification settings - Fork 1.3k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[Tables] Scrollable area in tables much longer than content #1216
Comments
Might also be a change to html/css with the control bars that causes the wrong element to scroll. |
Have confirmed data loss is occurring in real-time and historical tables. |
Ah, it's super easy. It's due to selecting the wrong element against which to process scroll events. It selects the first child |
Yup, this is basically it. |
[Tables] Fixed table scroll by modifying selection of scrollable element. Fixes #1216
Testathon 2016-10-21: Can't validate in historical tables, appears fixed in realtime tables. |
Testathon 2016-10-21: Verified in RT Table objects and views. Can't validate in historical tables via WARP. |
Fix was in |
In historical tables (but problem is probably in mct-table directive and thus not specific to historical tables) the scroll bar allows scrolling well beyond the visible rows of the table.
It looks as though the table in question (historical table with Sine Wave Generator content) probably has many more rows than the 50 displayed, but these are not being rendered for some reason. 50 is a suspicious number as it is the size of the maxDisplayRows variable that determines when the scrolling logic kicks in in the setVisibleRows function. This is where I would look first.
The text was updated successfully, but these errors were encountered: