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