scheduler: How to prevent drag and drop behaviour in month v

Hi,



How could I prevent drag-and-drop functionalty in month view and only in month view.

What i want to achive: the user should only be allowed to d-n-d events in the day and week view but not in the month view.



Is their an easy way to configure this behaviour?



/cosmic


Hello,


you can try to use onBeforeDrag event as follows:


scheduler.attachEvent(“onBeforeDrag”,function(id){
return this._mode != “month”;
});



Exactly what i need. Thank you!