Hey, I’m using Handsontable with React (8.2.0 and wrapper in 4.0.0 version), the table works great but after I’ve added a new column with the checkbox type, I’m only available to select/unselect this checkboxes by pressing space or enter on the keyboard, because nothing happens when I try use to mouse.
I’ve tried to delete as many as possible custom components from the page (where the table is used) to check if something causes it to lost the focus but still not any luck. I’ve also tried to use the simplest table (from one of the examples provided in here: https://handsontable.com/docs/8.2.0/demo-checkbox.html) to see if it would work but even then the issue is there.
Here’s my HotTable component:
<HotTable
ref={hot}
className=“data-table”
columns={tableColumns}
data={tableRows}
colHeaders={(index: any) => {
return tableHeaders[index]?.name;
}}
width={width}
licenseKey=“non-commercial-and-evaluation”
stretchH=“all”
height={height}
rowHeights={28}
rowHeaders={true}
afterChange={(changes, source) =>
console.log(changes, source)
}
/>