Prevent / Block Re-Sizing the Event

Is there any way ( property or method ) by which I can disable/enable the event re-size operation dynamically ( based on some condition ).

I looked around in the docs but there doesn’t seem to anything helpful in this regard. Perhaps there might be a private function which we can override?

Any Help would be really appreciated.

Thanks.

You can handle onBeforeDrag event. If you return false from callback function then internal drag event handler will not be triggered. If you want to prevent only resize action you should check ‘mode’ parameter of the callback function. See docs here: http://docs.dhtmlx.com/scheduler/api__scheduler_onbeforedrag_event.html