Can mouse events be attached to popups?
In http://webix.com/snippet/9d32481d, the mouseevents don’t seem to trigger. Is there something wrong with how I’m attaching them or do simply not work on popups?
Can mouse events be attached to popups?
In http://webix.com/snippet/9d32481d, the mouseevents don’t seem to trigger. Is there something wrong with how I’m attaching them or do simply not work on popups?
Nope, this works only for data based components ( list, datatable, tree, etc )
You can use native html events
webix.event(this.$view, 'mousemove', webix.bind(function(){
webix.message('1');
}, this));