After adding onMouseMove handlers drag stopped working.

Hi Everybody,
I need both: drag and row highlighting functionality.
But after adding

onMouseMoving: function(ev) {
          var id = this.locate(ev);
          if (id != this.last_used_id) {
            this.removeRowCss(this.last_used_id, "hover");
          }
          this.addRowCss(id, "hover");
          this.last_used_id = id;
        }
      },
      onMouseMove: {}

drag stopped working.
If I comment out mouse moving handlers, drag works again.
Can they coexist in datatable?
Thank you in advance!!!
Really love webix.
Steve

Hi,

Please use thehover property as described here:

http://webix.com/snippet/3f1d0361

Thank you very much!!!