Datatable, onMouseMoving needs tooltip:true

Hi,
I was trying to use onMouseMoving on Datatable, but it did not work. Only later I noticed that only with “tooltip:true”, the mouse events seem to start working…so I can go that way, just wondering if that would be useful to put into the documentation or fix it.

See also: https://snippet.webix.com/f6hlcz59

Thanks so much
Frank

Hello,
There is no need to use tooltip: true. The point is that we use on which allows attaching custom handlers to inner events of the component. onMouseMoving is event, but onMouseMove - datatable’s property. So it’s should write like

on:{
  onMouseMoving: function(ev){...}
},
 onMouseMove:{...}

Please check the example https://snippet.webix.com/gjbn9z87 .

Hello, Nastja,
…thanks a lot, I hear what you say…interestingly, in the snippet I attached if you leave tooltip:true in, the mouseover works as visible in console. If you comment out tooltip:true or set it to false, the nouseover does not work anymore…so tooltip: does have an effect on Mouse-events…
Thank you,
Frank