Disallow move events

Hi,

is it possible disallow to move events? scheduler.attachEvent(‘onBeforeDrag’,function(){return false;}); disallow creating new events too and that’s the problem.

Thank you for any ideas.

regards,
shufro

I found the solution:

scheduler.attachEvent(“onBeforeDrag”, function (event_id, mode, native_event_object){
return !(mode==“move”);
});

regards,
shufro