I'm tying to figure out how you appended the appointmentId in the sample live demo project ToolTipZoneId.
I don't see anything in the aspx file related to the argument being passed into this function?
Thanks, Burl
I don't see anything in the aspx file related to the argument being passed into this function?
| Protected Sub RadToolTipManager2_AjaxUpdate(ByVal sender As Object, ByVal e As ToolTipUpdateEventArgs) |
| Dim aptId As IntegerInteger = Integer.Parse(e.TargetControlID.Split("_"C)(1)) |
| Dim apt As Appointment = RadScheduler1.Appointments(aptId) |
| Dim toolTip As AppointmentToolTip = DirectCast(LoadControl("AppointmentToolTip.ascx"), AppointmentToolTip) |
| toolTip.TargetAppointment = apt |
| e.UpdatePanel.ContentTemplateContainer.Controls.Add(toolTip) |
| End Sub |
Thanks, Burl