Copy-Paste Not Working for Read-Only Rows in Handsontable

Hello,
I’m using Handsontable to create a table that has:
1. Pre-populated rows that are marked as readOnly .
2. An empty, editable row at the bottom where users can add new data.

While the readOnly rows work as expected (they cannot be edited), I also need them to be copyable. However, when I mark these rows as readOnly , the ability to copy data (using Ctrl+C ) from these rows gets disabled.

Here’s the relevant part of my configuration:

    <HotTable
      data={data}
      colHeaders={true}
      rowHeaders={true}
     contextMenu={false}
      copyPaste={true}
      cells={(row, col) => {
        if (row < data.length - 1) {
          return { readOnly: true, copyable: true }; // Pre-populated rows
        }
        return {}; // Editable row
      }}
    />

Hi @thapajunga

It seems that you may have the same issue as this user at Handsontable is a JavaScript data grid that looks and feels like a spreadsheet - Available for React, Angular, and Vue. As mentioned there (and listed at Disabled cells - JavaScript Data Grid | Handsontable) we can copy values from readOnly cells

You can even test that on the same site