I have a problem with the RadScheduler. I have hooked up a RadToolTipManager to the appointments on my Scheduler. If I have more than 2 appointments in one day and I switch to DayView for that day, the RadToolTipManager will not fire for the appointments that were not listed in the MonthView. I have an function (below) which fires and adds targetcontrols dynamically based on what is in the Scheduler. What's happening is that while this adds the appointments listed in the MonthView of the Scheduler to the targetcontrols, the RadToolTipManager doesn't show a modal tool tip for all other appointments not listed in the MonthView of the Scheduler. It's not until a postback occurs that the appointment shows a modal tool tip window from RadToolTipManager.
I want to have the RadToolTipManager show a tooltip for all appointments for everyday in the Scheduler, not just the first two. How do I do that?
Thanks,
David
I want to have the RadToolTipManager show a tooltip for all appointments for everyday in the Scheduler, not just the first two. How do I do that?
Thanks,
David
protected void RadScheduler1_AppointmentCreated(object sender, AppointmentCreatedEventArgs e)
{
if (blnAllowScheduleAccess == false)
{
//if (e.Appointment.Visible && IsAppointmentRegisteredForTooltip(e.Appointment) == false)
if (IsAppointmentRegisteredForTooltip(e.Appointment) == false)
{
RadToolTipManager1.TargetControls.Add(e.Appointment.ClientID,
true);
}
}
}