i put 3 views in fullcalendar : month, agendaweek , agendaday. need activate drag & drop , forbidden events resizing. use following solution on each render event :
$("#calendar").fullcalendar( 'renderevent', { title: "event name", editable: true, disableresizing: true }, true );
it's working in month view, can drag & drop , resize events in agendaweek , agendaday views. how can remove resizing in views ?
thanks.
i try use calendar option durationeditable:false
did not work. workaround use css , hide resize element:
.fc-resizer.fc-end-resizer { display: none; }
Comments
Post a Comment