Popup displays in wrong position on single click in datatable cell

Hello,
I may have found a bug. Im looking at code snippet: Code Snippet
When using a single click instead of a dblclick to show the popup in the datatble, the popup displays in the top left whenever you change rows. If you stay on the currently selected row the popup displays fine. Is there a fix for that?

Thanks,
Pieter

probably it is a bug.
try to use this.getItemNode(id) instead of node

  on:{
    onItemClick:function(id, e, node){
      $$("editwin").show(this.getItemNode(id));
    }
  }

https://snippet.webix.com/lwzz51ue
for some reason actual node differs from node passed to handler.

Hello, @Pieter
Yes, I can confirm that there is a bug. Thank you for noticing!

That works. Thank you!