Hello Team,
can we fix drag and drop for some events. if i use scheduler.config.drag_move = false/true;
It works for all events but i want to restrict this for some events.
how can i do that?
Thanks
Hello Team,
can we fix drag and drop for some events. if i use scheduler.config.drag_move = false/true;
It works for all events but i want to restrict this for some events.
how can i do that?
Thanks
You can do it through events
scheduler.attachEvent("onBeforeDrag", function(id, mode){
if (scheduler.getEvent(id).someprop) return true;
return false;
})