We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
The scroll of the parents should not move when change scroll of table
When i have scrollbar in parent container the scroll moving in both.
https://jsfiddle.net/uzg4dosc/
The text was updated successfully, but these errors were encountered:
This is the unfortunate result of Chrome making touch events passive by default. I won't be able to fix within FDT2 until React fixes #8968.
In the meantime, you can fix it in your app by adding this css:
.fixedDataTableLayout_rowsContainer { touch-action: none; }
Some discussion related to this can be found at the bottom of this thread: #154
Sorry, something went wrong.
@wcjordan this works! Thanks
No branches or pull requests
Expected Behavior
The scroll of the parents should not move when change scroll of table
Current Behavior
When i have scrollbar in parent container the scroll moving in both.
Steps to Reproduce (for bugs)
https://jsfiddle.net/uzg4dosc/
Your Environment
The text was updated successfully, but these errors were encountered: