79832370

Date: 2025-11-28 08:16:48
Score: 0.5
Natty:
Report link

You can achieve this by overriding the row expansion logic manually within your row or cell click handler.

Add this:

onClick: () =>
  table.setExpanded({
    [row.id]: !row.getIsExpanded(),
  })

This is a solution i found from the GitHub discussion linked here

Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Collins