I am using Handsontable with Angular with Angular 6 wrapper.
I am listening to afterSelectionEnd event using this
<hot-table
[data]="ssData"
[rowHeaders]="true"
[colHeaders]="columns"
[columns]="columnDef"
[colWidths]="colWidths"
[outsideClickDeselects]=false
[afterSelectionEnd]="afterSelectionEnd"
>
</hot-table>
I expect the ‘this’ reference point to the component in the afterSelectionEnd() method.
But, the value is null. Is this a known issue or am I doing something wrong?
Any help would be appreciated.
Thanks