I need to lock down (i.e. prevent moving and resizing) an event that has certain attributes. I was able to do that calling args.preventDefault() in onEventMove() and onEventResize(). However, the user is still able to drag and resize the event and only has the operation cancelled afterwards.
My question is whether it is possible to prevent the dragging from even being started? I have tried setting 'moveDisabled' property on Event but it didn't work. Thanks.