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

Rad Scheduler Appointment Drop and Drag

1 Answer 117 Views
Telerik Trainer
This is a migrated thread and some comments may be shown as answers.
Oliver
Top achievements
Rank 1
Oliver asked on 08 Apr 2012, 10:23 PM
Hi, Telerik team

How to realize update the data of appointment via drag or drop the appointments in the scheduler?

1 Answer, 1 is accepted

Sort by
0
Ivan Todorov
Telerik team
answered on 09 Apr 2012, 03:24 PM
Hi Oliver,

Thank you for contacting us.

I suppose you need a notification when you drag an appointment from one time slot to another in order to do some updates. If this is the case, you can use the AppointmentDropping / AppointmentDropped events:

this.radScheduler1.AppointmentDropped += new EventHandler<AppointmentMovedEventArgs>(radScheduler1_AppointmentDropped);
 
void radScheduler1_AppointmentDropped(object sender, AppointmentMovedEventArgs e)
{
    // e.Appointment has been dropped
}

If this is not the case, please describe in more detail your scenario. You can also send me a code snippet or a sample project which demonstrates the scenario. Getting familiar with your approach will let me provide you with quicker and more accurate responses.

Please let me know if you need further assistance.

Kind regards,
Ivan Todorov
the Telerik team

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

Tags
Telerik Trainer
Asked by
Oliver
Top achievements
Rank 1
Answers by
Ivan Todorov
Telerik team
Share this question
or