Is there onManualColumnMove event?

Tags: #<Tag:0x00007f8b1d5c02b0>

I have tooltips on each cell in first column that are additionally set. When Handsontable is created with option:
manualColumnMove: true,
when I drag column and drop it to new place, tooltips stay on old (first) column.
Is it possible and how to recognize movement of column? Or some other way to fix this issue?

Hi @igorgeorgijev

We have two hooks fired by ManualColumnMove plugin:
beforeColumnMove - https://handsontable.com/docs/7.4.2/Hooks.html#event:beforeColumnMove
and afterColumnMove - https://handsontable.com/docs/7.4.2/Hooks.html#event:afterColumnMove

Both of them have two parameters: columns - an array of visual column indexes that were moved, and target which is a visual column index being a target for moving columns.