Is it possible to enable drag_resize to only selected events?
Hi,
there is no built-in way to do this, but you can manage resizing with onBeforeDrag event:[code]scheduler.attachEvent(“onBeforeDrag”, function (event_id, mode){
//allow moving and creating
if(mode != “resize”)
return true;
//deny resize if event is not selected
return (event_id == scheduler.getState().select_id);
});[/code]