is there a way to disable the move event for a specific appointment?
It seems that the recurring events already have this built in, but is there any way I can add this to my custom appointments?
Regards,
Philip
1 Answer, 1 is accepted
0
Ivan Todorov
Telerik team
answered on 23 Oct 2012, 01:25 PM
Hello Philip,
Thank you for your question.
You can use the DragDropBehavior property of RadScheduler to manipulate the drag & drop operations. In your particular case, you should handle the Started event and stop the drag operation if the appointment is a custom one:
if (this.radScheduler1.DragDropBehavior.ActiveFeedback.AssociatedAppointment is CustomAppointment)
{
this.radScheduler1.DragDropBehavior.Stop(false);
}
}
Hope this helps. Do not hesitate to write back if you have any additional questions.
Greetings,
Ivan Todorov
the Telerik team
You’ve been asking for it and now it’s time for us to deliver. RadControls for WinForms Q3 2012 release is just around the corner. Sign up for a free webinar to see first all the latest enhancements.