Get Node from Kanban item.

HI I tried several ways to get the node of a current clicked Kanban Item, but this was not successful. I used this code:

    $$("myBoard").eachList(function(list,status){
        list.on_click["image"] =  function(e,id){
            //webix.alert("'"+ this.getItem(id).image+"' has been clicked");
            console.log("ListItemClick01");
            imageVorschau(this.getItem(id).referenz,this.getItem(id).node);

        };
    });

How I can successful get the node of the current clicked Kanban item?

It looks like the code above will only get the node from the top widget (Kanban). I tried to use the node in Popup Show method. And it will use the placement of the Kanban board, not the item

Hi,

Just use getItemNode():

$$("myBoard").eachList(function(list,status){
  list.on_click["webix_kanban_user_avatar"] = function(e,id){
    let node = this.getItemNode(id);
  };
});

Sample: Code Snippet