Neither disableDragging nor disableResizing are functions defined in fullcalendar as of 1.4.8. I am sure that 2 people in the world have not tried the first sentence :) However, you will need to use the jQuery interface object itself to disable drag and drop or resize at the event level. Therefore (instead of trying to use non-existent functions) try this in your eventRender(event, element) :
if (event.id > 100) { element.draggable = false; }
Note that I am simply setting the property directly in the jQuery element, since it refers to the roaming interface.
The same goes for resizable EXCEPT, that you will need to remove the div ( class = ui-resizable-handle ui-resizable-s ) that is added by fullcalendar, identifying it with the jquery selector and deleting it (just remember to set a unique class name per event in yoru an array of events so you can easily identify it in the DOM ). Please kindly ask the fullcalendar developers (developers) to add disableDragging and disableResizing objects to the Event object. It takes less than a minute to add support to this source.
Aaron
source share