Skip to content

How to select rows that can be expanded using getRowCanExpand prop even if renderDetailPanal prop exists #144

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

You must be logged in to vote

You can override any expand button props with the muiExpandButtonProps prop. You can access the row values too within that prop callback.

<MaterialReactTable
  columns={columns}
  data={data}
  muiExpandButtonProps={({row}) => ({
    disabled: row.original.whatever //disable when criteria met
  })}
/>

Replies: 1 comment 1 reply

Comment options

You must be logged in to vote
1 reply
@tacigar
Comment options

Answer selected by KevinVandy
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