Start Building Professional
Web Apps Today


 
Categories Question details Back To List
Question  posted by cosmic on Dec 21, 2009 01:38
open dhtmlx forum
scheduler: How to prevent drag and drop behaviour in month view?

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
Answer posted by Alex (support) on Dec 21, 2009 01:48

Hello,

you can try to use onBeforeDrag event as follows:

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

Answer posted by cosmic on Dec 21, 2009 04:47
Exactly what i need. Thank you!