Replies: 2 comments 1 reply
-
You can do something like this <MaterialReactTable
muiTableBodyRowProps={({ row, table }) => ({
hover: !table.getState().editingRow,
sx: {
opacity: !table.getState().editingRow || table.getState().editingRow.id === row.id ? 1 : 0.5
}
})}
/> |
Beta Was this translation helpful? Give feedback.
0 replies
-
Yep... you right. I did something similar here with pointerEvents as well... not sure if it should be a feature in the core table or not... |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
I think it would be really cool if the table will be disabled during a row edit except the editing row. Something like that:
Beta Was this translation helpful? Give feedback.
All reactions