On Row Hover event / action #351
Answered
by
KevinVandy
kscottthomas
asked this question in
Q&A
-
I am trying to display a popup message when a user hovers over certain rows. Is that supported in any way? I have exhausted all of my ideas. Thank you in advance!!! Scott |
Beta Was this translation helpful? Give feedback.
Answered by
KevinVandy
Feb 1, 2023
Replies: 1 comment 5 replies
-
Are you using a custom cell render? Maybe something like: import Tooltip from '@mui/material/Tooltip';
const columns = useMemo(
() => [
{
accessorKey: 'salary',
header: 'Salary',
Cell: ({ cell }) => (
<Tooltip title="tooltip info">${cell.getValue().toLocaleString()}</Tooltip>
),
},
//...
[],
); |
Beta Was this translation helpful? Give feedback.
5 replies
Answer selected by
kscottthomas
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Are you using a custom cell render? Maybe something like: