Get caller from popup

Hi team,

How could we get caller of a popup window ?

https://snippet.webix.com/pd4ovd9p

There is a datatable with a right click context menu and a CTRL + right click popup

For example, i wish obtain the contextual object source when the CTRL + right click popup is shown

Coul you help me ?

try to set popup’s caller info just before show

  var pos = theDatatable.locate(e);

  if (e.ctrlKey) {
    $$("popupMenu").caller = pos.row;
    $$("popupMenu").show(e)

    webix.html.preventEvent(e)
    return true
  }

https://snippet.webix.com/bz93z7as

Tank you very much @intregal !!!