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!
✅ Officially supported ✅
⚠️ Not officially supported, expect warnings ⚠️
☣️ Not officially supported, expect warnings and errors ☣️
✅ Officially supported ✅
⚠️ Not officially supported, but "should work" ⚠️
👋 Need general support? Not sure about how to use React itself, or how to get started with the Grid?
Please do not submit support request here. Instead see
https://github.com/adazzle/react-data-grid/blob/master/CONTRIBUTING.md
I'm not being able to open a cell action on the last rows. After the first time you click the scroll bar starts blinking (it opens and close the action menu automatically)
Follow the evidence (gif):

You can also see it happening through the official docs:
https://adazzle.github.io/react-data-grid/docs/examples/cell-actions
Please include:
- What the current behavior is
Whenever you try to access a cell action on the last few rows, it starts to blink and it's not possible to click on the actions
- What the desired behvaior is
Be able to click on the actions.
- (If Bug) Steps to reproduce the issue
- (If Feature) The motivation / use case for the feature
We especially love screenshots / videos of problems, and remember
The Best Issue Is A Pull Request™
Any thoughts on this? Facing the same problem.
+1 on this
Little css approach for those who facing this
.react-grid-Row:nth-child(n + 6) .rdg-cell-action-menu {
top: 0;
transform: translateY(-100%);
}
A small improvement that does the trick
.react-grid-Row:nth-last-child(-n + 6) .rdg-cell-action-menu {
top: 0;
transform: translateY(-100%);
}
cellActions prop will be removed in v7 but it is still possible to add cell actions using a custom formatter
https://github.com/adazzle/react-data-grid/blob/canary/CHANGELOG.md
https://adazzle.github.io/react-data-grid/canary/?path=/story/demos--cell-actions
https://github.com/adazzle/react-data-grid/blob/canary/stories/demos/CellActions.tsx
Most helpful comment
Little css approach for those who facing this