I have my columns loaded dynamically and have the manualMoveColumn set to true.
This correctly moves the column for me, however, now I want to still use the menu item for “Delete Column”.
For this action, I am getting the column index, and then using
var col = this.hotTableComponent.current.columnSettings[colindex[0][1]]; to get the column.
However, this continues to refer to the previous column, not the current column that was moved.
How can I get a reference to the column after it’s been moved?