-
-
Notifications
You must be signed in to change notification settings - Fork 131
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
Fixed header - Show scroll bar all the time #676
Comments
Hmm.... It seems and it seems wired correctly so maybe it has something to do with when we're creating the ember scrollable component. I don't have much guideance to give in this realm besides acknowledging that yeah it needs more 👀 and investigation |
Thanks for the quick reply @alexander-alvarez. I was starting to think that it was to do with how we set But I'm really struggling to work out exactly how it's being set... |
@alexander-alvarez it seems to be working fine when rendering a table with an existing set of rows, but when the rows are being fetched from the server the scrollbar doesn't render. I wonder if the issue is actually to do with the timing of setting up ember-scrollable. On-load, the table is empty (so no scrollbar is needed and none is rendered 👍) we then fetch some data, and load it into the table at which point we still have no scrollbar even though there should be one (👎). Does ember-scrollable know to recheck if a scrollbar should be visible based on a change to the number of rows? |
Possible related to alphasights/ember-scrollable#85 ? |
@fran-worley great research work... It seems like we're probably encountering that issue. Checking your PR now. |
Closing as MR that fixes the problem has been merged in 2.x branch. |
I had assumed that turning off autoHideScrollbar would result in the scroll bar always being visible.
Turning off autoHide seems to ensure it stays visible, but only becomes visible after scroll has occurred.
I’m raising this as a number of our users have complained of being unable to scroll our tables since we adopted Ember Light Table. On closer inspection, the problem appears to be be with users who prefer to click and drag a scroll bar rather than use gestures or a scroll wheel to do so.
Even so I believe this is a valid issue - it should be possible to display scroll bars at all times and I would expect disabling autoHideScollbard to control this behaviour.
The text was updated successfully, but these errors were encountered: