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

Multi-Select drag drop does not refresh view

3 Answers 56 Views
ScheduleView
This is a migrated thread and some comments may be shown as answers.
Rod Yager
Top achievements
Rank 1
Rod Yager asked on 13 Sep 2011, 03:15 PM
It seems that when I multi-selct two or more appointments and drag them, I still end up with appointments residing at the old and new positions. Works just fine dragging one appointment around. Bug?

Rod

3 Answers, 1 is accepted

Sort by
0
Yana
Telerik team
answered on 16 Sep 2011, 09:38 AM
Hi Rod,

I've tried to reproduce this issue in our online examples but without much success, I've attached a short video to show my attempt. Am I missing something? Can you send us more details which will help us reproduce the problem?

All the best,
Yana
the Telerik team

Explore the entire Telerik portfolio by downloading the Ultimate Collection trial package. Get it now >>

0
Rod Yager
Top achievements
Rank 1
answered on 19 Sep 2011, 10:06 PM

If it helps, I have a custom appointment object and I use a custom DragDropBehavior that ovverides the ConvertDraggedData method. Maybe that's the difference? Can you try doing that and see if you can duplcate?

public override IEnumerable<IOccurrence> ConvertDraggedData(object data)
       {
           if (data.GetType() == typeof(DataObject))
           {
               return (data as DataObject).GetData("MetrixTaskAppointments") as IList<IOccurrence>;
           }
 
           return base.ConvertDraggedData(data);
       }

0
Yana
Telerik team
answered on 22 Sep 2011, 01:51 PM
Hi Rod,

I checked the project from this thread with the MetrixTaskAppointments, but still wasn't able to reproduce the described issue.  Can you open a support ticket and send us a simple project demonstrating the problem? Thanks in advance

All the best,
Yana
the Telerik team

Explore the entire Telerik portfolio by downloading the Ultimate Collection trial package. Get it now >>

Tags
ScheduleView
Asked by
Rod Yager
Top achievements
Rank 1
Answers by
Yana
Telerik team
Rod Yager
Top achievements
Rank 1
Share this question
or