Hello,
I am working on updating a whole row instead of per cell. I am using afterDrawSelection hook to know if the row has moved from one row to the other. However, I am encountering issues on this scenarios:
1.) After changing the last cell of a row then pressing TAB or clicking to other row, the afterDrawSelection gets called first before afterChange. But when I hit enter, pressed arrow up or down, the afterChange gets called first before afterDrawSelection.
Is there a way to always fire the afterChange first before afterDrawSelection? I can’t understand why TABBING (at end of row) or clicking on other row fires afterDrawSelection before afterChange…