Hi.
I have updated the latest version of the telerik dlls for schedule view and the drag/drop behavior stopped working. I do not have this problem for the RadListBox, all works as it previously did.
the setup is this:
On the Appointment template I used telerik:DragDropManager.AllowDrag="True"
Everything was working ok before I updated the dlls , now none of the override methods in the ScheduleViewDragDropBehavior are hit.
I have updated the latest version of the telerik dlls for schedule view and the drag/drop behavior stopped working. I do not have this problem for the RadListBox, all works as it previously did.
the setup is this:
<
telerik:RadScheduleView.DragDropBehavior
>
<
localScheduler:ScheduleViewLevel1DragDropBehavior
/>
</
telerik:RadScheduleView.DragDropBehavior
>
public class ScheduleViewLevel1DragDropBehavior : ScheduleViewDragDropBehavior
{
public override bool CanStartDrag(DragDropState state)
{
return true;
}
public override bool CanResize(DragDropState state)
{
return false;
}
public override bool CanDrop(DragDropState state)
{
//...
return true;
}
public override void Drop(DragDropState state)
{
//...
}
}
On the Appointment template I used telerik:DragDropManager.AllowDrag="True"
Everything was working ok before I updated the dlls , now none of the override methods in the ScheduleViewDragDropBehavior are hit.