Drag and Drop

Can i enable drag and drop for units view only? Is this possible if possible please let me know how can i implement this.

Thanks in advance
Shiju

You can use onBeforeDrag event, similar to the next

scheduler.attachEvent("onBeforeDrag",function(id, drag){ if (scheduler._mode == "units" && drag == "move" ) return true; return false; })