When I add an appointment to the appointments collection manually, say like this:
When I drag that appointment to a new location, there is no "feedback" of where I and currently hovering, so it makes it difficult to know if I'm dropping it in the correct spot.
Appointment apt =
new
Appointment();
apt.UniqueId =
new
EventId(1);
apt.ResourceId =
new
EventId(1);
apt.Start = DateTime.Now.Date.AddHours(9);
apt.End = apt.Start.AddMinutes(30);
apt.Summary =
"Apt Test"
;
radScheduler1.Appointments.Add(apt);