Create a "nested" row that ignores columns (full width)

Is there anyway to add a nested row that takes up the full width of the table?

We’re proof-of-concepting various table/spreadsheet libraries, and we’d like to add nested rows that span the entire table w/ custom rendering inside in order to provide additional custom functionality to each row of data. But we don’t want the custom data to align to the cell columns since they’re purely an accessory to the row of data.

Happy to answer any questions if this isn’t clear – feel free to reach out.

Thanks!

Looks like I can combine “nestedRows” w/ “mergeCells”, but then the index of each row changes w/ the nested row. So I need to keep very specific track of what is open/closed and where the nested rows are. :expressionless:

It’s feasible, but fairly painful.

        mergeCells: [
          {row: 1, col: 0, rowspan: 1, colspan: 8}
        ],

Hi @switz

yes, currently merging is an only way to have a single column row in multi-column table.