Hi Smart,
Thank you for your interest in Syncufsion products.
In order to restrict item dragging from a date to another date, the ItemChanging event can be handled by using the Cancel event argument. Please make use of the below code and example.
Example code
this.scheduleControl1.ItemChanging += ScheduleControl1_ItemChanging;
private void ScheduleControl1_ItemChanging(object sender, ScheduleAppointmentCancelEventArgs e)
{
if (e.Action == ItemAction.ItemDrag)
e.Cancel = true;
} |
Please let us know, if you have any other queries.
Arulpriya