Hello Team,
Is there a way to allow user-select cell value, so that a user could highlight and copy text from these cells? Or any cells.
var hot = new Handsontable(container, {
data: data,
readOnly: true,
}
Allow cell value copy at readonly
Hi @rajucse2393
You can use editor: false
instead, that will allow to copy the values, but the cell still won’t be editable: https://handsontable.com/docs/react-data-grid/disabled-cells/#overview
okay thanks