Skip to content

On Row Hover event / action #351

Answered by KevinVandy
kscottthomas asked this question in Q&A
Discussion options

You must be logged in to vote

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>
      ),
    },
//...
  [],
);

Replies: 1 comment 5 replies

Comment options

You must be logged in to vote
5 replies
@kscottthomas
Comment options

@KevinVandy
Comment options

@kscottthomas
Comment options

@KevinVandy
Comment options

@kscottthomas
Comment options

Answer selected by kscottthomas
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Category
Q&A
Labels
None yet
2 participants