-
-
Notifications
You must be signed in to change notification settings - Fork 3.1k
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 columns in MultiGrid aren't scrollable #648
Comments
Happy to review a PR that fixes this! |
No time pressure on this or anything. But since it's not on my plate, I'm going to clear it out of the open issues list. If you find time to submit a PR for this I'll be happy to review it! |
hey @cp, any luck with a PR on this? |
@cp any update on this? want to explore a fix as well and would love for a head-start based on what you've found so far, care to share? |
+1 for a PR on this, or even just some notes about how to solve it... |
for discussion: https://github.com/danalloway/react-virtualized/tree/scroll-fixed-sections not sure of any side affects yet, but it works in a project I'm in the middle of |
when MultiGrid is in fixed mode (cols, rows or both) the grid section that is fixed needs an so, in theory, two new methods are needed
after that we adjust the styles for each section to allow overflow visibility in the proper direction and you should have a basic working example of fixed section scrolling. this may be the incorrect way of doing it, but it is one way to get something working with minimal effort |
I'm still happy to review a PR for this but don't plan to take any action on creating one myself. 😄 |
Hey friends, sorry about the lack of update here from me. Unfortunately I went back to using HTML tables as opposed to RV, and wasn't able to find a reasonable path forward with this issue. Best of luck. |
Hello! I recently brought this up in the Slack channel and wanted to file a ticket here as a way to document the issue to reference internally at my company, as well as possibly start a discussion here.
When using
MultiGrid
, fixed columns (i.e. thelowerLeftGrid
) aren't scrollable. As Brian mentioned in Slack this was a technical limitation caused by issues usingScrollSync
to sync 2 grids. This begins to be an issue when anywhere between a good amount of our columns are fixed: it's not obvious to the user that they can't scroll on them.I recently tried out a potential fix locally, and only found a couple small issues when syncing two
Grid
s. I'm planning on fixing them and opening a PR unless there's any objections.The text was updated successfully, but these errors were encountered: