Cell position on screen

Tags: #<Tag:0x00007efc60e29240>

in afterOnCellMouseOver -Event I can get the screencoordinates of a cell.

afterOnCellMouseOver = async (event, coords, TD) => {
    this.cellinfoleft = event.clientX - event.offsetX + 'px';
    this.cellinfotop = event.clientY - event.offsetY - 50 + 'px';
  }

Is it possible to get it in general of a cell? e.g. on afterOnCellChange-Event?

Hi @daniel.z

Most of the hooks that we have return coordinates with the table itself (row index, column index). That also applies to the cell that is changed. But based on the cell coordinates in the table you can use the getCell method to get the HTML element like here https://jsfiddle.net/m5bypcz0/2/ and then process with the X, Y page coordinates as explained here https://stackoverflow.com/questions/37200019/how-to-get-elements-clientx-and-clienty-like-a-mouse-event