This is a migrated thread and some comments may be shown as answers.

getting Dragged On Time

1 Answer 36 Views
ScheduleView
This is a migrated thread and some comments may be shown as answers.
Deepak
Top achievements
Rank 1
Deepak asked on 18 May 2011, 08:39 AM
Hi There,

we have a requirement where in , we are trying to implement dragdrop between RadTreeview and RadScheduleView.
while doing this, we are showing our custom dialog when a item is drag-drop'd from treeview to schedulerview.
in this dialog i need to show the " time " , which the user has dropped on to in the timeline. basically something simillar to 
RadDragAndDropExtensions.GetTimeSlot

Regards
Deepak

1 Answer, 1 is accepted

Sort by
0
Valeri Hristov
Telerik team
answered on 25 May 2011, 08:19 AM
Hi Deepak,

The appointment drop zone is accessible through the DragDropState.DestinationSlots property:
public override void Drop(DragDropState state)
{
    var targets = state.DestinationSlots;
    ...
}

DestinationSlots contains one Slot for every dragged appointment, in the same order.

Best wishes,
Valeri Hristov
the Telerik team
Do you want to have your say when we set our development plans? Do you want to know when a feature you care about is added or when a bug fixed? Explore the Telerik Public Issue Tracking system and vote to affect the priority of the items
Tags
ScheduleView
Asked by
Deepak
Top achievements
Rank 1
Answers by
Valeri Hristov
Telerik team
Share this question
or