-
Notifications
You must be signed in to change notification settings - Fork 2.2k
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
Values not showing up for right-hand column cells when resize the window #1087
Comments
Facing similar issue while increasing the width of a column and then horizontal scroll to right. |
i have the same problem |
I have same issue and is currently looking for a table solution :-) Any progress on this :-) ? |
@thupi I opened a PR, the bug was just fix, I'm waiting the merge with master. If you want try the fix you can checkout francesc79/react-data-grid branch zazos-issue-1087. |
This is a known issue where sometimes the cell content is empty. We are actively working on improving the cell rendering logic and v4 should address this issue. In the meantime re-rendering grid seems like a potential solution
|
Hi Aman, |
Is this fixed in any of the v4 releases? |
I think the bug still exists in v4. |
Please check the change log for what is included in v4. We recently merged a PR that improves cell rendering logic and will fix this particular issue. It is a big rewrite and we discovered a few bugs during internal testing. This is being actively worked on but at this moment we do not know when this will be released. I will keep you all posted. |
Hi, any update on this? Or at least could you bump @next on NPM with the PR you mentioned @amanmahajan7 ? Thanks. |
This issue has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs. Please reopen this if you feel it has been incorrectly closed and we will do our best to look into it. Thank you for your contributions. |
Is there any update on this? It looks like it was supposed to be fixed in v4. |
Any update on this? |
This issue has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs. Please reopen this if you feel it has been incorrectly closed and we will do our best to look into it. Thank you for your contributions. |
Have you already searched for similar issues? Please help us out and double-check first!
Also, please don't be that person who deletes this template. It's here for a reason.
Thanks!
Which version of React JS are you using?
✅ Officially supported ✅
☣️ Not officially supported, expect warnings and errors ☣️
Which browser are you using?
✅ Officially supported ✅
I'm submitting a ...
Issue Details
When I resize the window same column cells disappear. I debug the library and I find what hepped.
Into ViewportScrollMixin module is defined componentWillReceiveProps livecycle hook that call updateScroll function. The problem for my opinion is that when call updateScroll without last parameter width the function getRenderedColumnCount consider this.props.columnMetrics.totalWidth that is not updated.
--
The text was updated successfully, but these errors were encountered: