Material-table: Can I display info on row hover?

Created on 16 Jun 2020  路  2Comments  路  Source: mbrn/material-table

Hello!
I did my research and I think that there's no such a thing. I mean, I want to show some info when I hover over a certain row field.

Material-table can't do it atm right?

question wontfix

Most helpful comment

I'm not sure what you said about info. If you were talking about Tooltips (for expample), so we could do something like this.

components={{
  Cell: (props) => 
    <Tooltip title={props.value} arrow>
      <MTableCell {...props} />
    </Tooltip>
}}

print

All 2 comments

I'm not sure what you said about info. If you were talking about Tooltips (for expample), so we could do something like this.

components={{
  Cell: (props) => 
    <Tooltip title={props.value} arrow>
      <MTableCell {...props} />
    </Tooltip>
}}

print

This issue has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs. Thank you for your contributions. You can reopen it if it required.

Was this page helpful?
0 / 5 - 0 ratings