Drag and drop clicking anywhere

Currently to drag and drop an event I need to click on the header and drag it. I would like to change this so the user can click anywhere in the event body to drag it. Is this easily achievable?

Check dhtmlxscheduler.js

_on_mouse_down = function ... case "dhx_header": case "dhx_title": this._drag_mode="move"; //item in table mode

changing it as

case "dhx_header": case "dhx_body": case "dhx_title": this._drag_mode="move"; //item in table mode

may help

Thank you, this works well. I was hoping to do it without modifying the source but if not possible this is good. :slight_smile: