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

AppointmentUpdate Server event (Drag)

1 Answer 35 Views
Scheduler
This is a migrated thread and some comments may be shown as answers.
Nasser Juma Al-Bulushi
Top achievements
Rank 1
Nasser Juma Al-Bulushi asked on 08 Sep 2010, 07:29 AM

When dragging and dropping an appointment, the AppointmentUpdate Server event has the same value for the event args for the e.Appointment AND e.ModifiedAppointment.  When I add the client event OnClientAppointmentMoveEnd, I get the correct modified value on the client side, but the serverside is always wrong.
How can I get the modified Appointment from the AppointmentUpdate Server event after dragging ?

Thanks

1 Answer, 1 is accepted

Sort by
0
Peter
Telerik team
answered on 11 Sep 2010, 03:10 PM
Hello Nasser,

Attached is a simple test page which shows that everything works as expected. Please, let me know if I am missing something.

protected void RadScheduler1_AppointmentUpdate(object sender, AppointmentUpdateEventArgs e)
  {
      Response.Write("previous start time: " + e.Appointment.Start.ToShortTimeString() + "</br>");
      Response.Write("new start time: " + e.ModifiedAppointment.Start.ToShortTimeString() + "</br>");
  }


All the best,
Peter
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
Scheduler
Asked by
Nasser Juma Al-Bulushi
Top achievements
Rank 1
Answers by
Peter
Telerik team
Share this question
or