Hi,
We are running into an issue with handsOnTable, where we keep getting a “TypeError: Cannot read property ‘parentNode’ of null” or “TypeError: Cannot read property ‘tagName’ of null” error.
The first seems to be occurring int he GetCoords function, while the second seems to be in the checkIfColumnHeader function. However it looks like the cause of the issue is the same in both cases, where the function gets the parent of the item in question, and a null is returned which causes the error above when attempting to read its parent or its tagName.
I have managed to replicate the issue, when it occurs in GetCoords here:
https://jsfiddle.net/fhLkj581/2/
(I have not managed to replicate the tagName issue outside of our environment…and even there we are not sure of the exact steps required to replicate since it occurs when one clicks on a cell and highlights randomly around the cell)
We have tried this on both the 6.2.0 as well as the 7.2.1 and it seems to occur on both. We also tried this on Chrome, Firefox and Edge, and it was encountered on all browsers.
Does anyone know if we are doing something wrong that from our end that is resulting in this issue?
Alternatively does anyone know a way we can bypass this issue?
Thanks