Hello, I’m having some issues with HandsOnTable not working as expected.
When I initiate HandsOnTable, all data loads in fine and all options set seem to work as expected, but I’m getting some strange behavior with the plugin itself. The main issue is that when I double click a cell, it never switches to edit mode on that cell. I can edit the cell if I have it selected and type a value (will override existing value), or if I press enter or F2 with it selected (will switch to edit mode).
I did some debugging and the plugin isn’t ever even seeing the double click event, but jquery will see the event or if I set up a test double click event, that will trigger as well.
The other issue, is when clicking on cells, sometimes the cell will not select. This seems entirely random, but once it gets in this state, you can’t select the cell you’re trying to with a click no matter what. You must then click a different cell.
I do have a lot of settings I’m using, but these problems are consistent even with just a basic table set up I took from a jsFiddle on this forum
var hot = new Handsontable(container, {
data: Handsontable.helper.createSpreadsheetData(1000, 1000),
colWidths: 100,
width: ‘100%’,
height: 320,
rowHeights: 23,
rowHeaders: true,
colHeaders: true
});
This is what my container looks like
<div id="handsOnTableData_100151845" style="height: 250px; max-height: 250px; overflow-y: auto; overflow-x: hidden;"></div>
I’m using I believe the latest version at this time, 12.2.0
Anyone seen anything like this before? Any help would be appreciated! Thanks