Another issue: is possible to disable edit/drag only for specific event?
In other word, i need to disable editing/dragging on event based on parameter.
scheduler.attachEvent("onBeforeDrag", function (event_id, mode, native_event_object){
var ev = scheduler.getEvent(event_id);
if(ev.status_no)
return false; // blocked drag if status_no = 1
return true; // dnd is enabled for other events
});
Best regards,
Ilya
above code will help with dnd blocking , you can place similar handlers for onBeforeLightbox and onClick, onDblClick events - returning false from them will prevent all ways to edit event.