onMouseMove event analogue for buttons

Hello,

I’m wondering if I can implement the following: there’s a button that calls a popup (with another three buttons) when a cursor is on it.

Afaik, for datatable, for example, there is onMouseMove event for that. But I couldn’t find anything suitable for the buttons.

Is there any solution?

There is popup property in button object, but with this property specified popup shows after clicking the button, not after moving the cursor on the button

you can implement own logic for this event

webix.event(document, "mouseover", function(e){
  if(e.target instanceof HTMLButtonElement){//or check for class
    const button = $$(e);
    if(button.callEvent){
      button.callEvent("onMouseOver",[]);
    }
  }
})

https://snippet.webix.com/dtl8r4cf