How To Disable Scrolling In HandsOnTable?

Tags: #<Tag:0x00007f8b1cca4a78>

I have a HandsOnTable defined by:

let t = new Handsontable(document.getElementById(tid), {
columns: columns,
data: data,
colWidths: 100,
rowHeights: 23,
rowHeaders: true,
colHeaders: true,
renderAllRows: true,
currentHeaderClassName: ‘ht_highlighted’,
currentColClassName: ‘ht_highlightedcol’,
currentRowClassName: ‘ht_highlightedrow’
});

And it renders pretty well (fills out the page for the size of the contents as desired,) however when using the mousewheel to scroll it seems to intercept and block the mousewheel event without letting it pass to the page and do the actual scrolling. Is there a way to shut off the HandsOnTable intercept of the mousewheel event?

Additionally: this appears to be limited to Firefox, Palemoon, Waterfox, etc - in Chrome it works as expected, I haven’t tested in Opera, Safari or IE.

Hi @cory

Please check by last comment to https://github.com/handsontable/handsontable/issues/4649