How to select rows that can be expanded using getRowCanExpand prop even if renderDetailPanal prop exists #144
-
In my use case, even when Looking at the implementation, the reason for this seems to be that the expand button is always enabled if I would like to work around this behavior somehow. |
Beta Was this translation helpful? Give feedback.
Answered by
KevinVandy
Oct 6, 2022
Replies: 1 comment 1 reply
-
You can override any expand button props with the <MaterialReactTable
columns={columns}
data={data}
muiExpandButtonProps={({row}) => ({
disabled: row.original.whatever //disable when criteria met
})}
/> |
Beta Was this translation helpful? Give feedback.
1 reply
Answer selected by
KevinVandy
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
You can override any expand button props with the
muiExpandButtonProps
prop. You can access therow
values too within that prop callback.