I don't understand why this isn't working......
I keep getting this:
[NullReferenceException: Cannot find a server control with ID=2. If you need to specify a client-side element ID, please set IsClientID to true.]
Telerik.Web.UI.RadToolTipBase.ThrowControlNotFound(String ctrlID) +61 blah blah blah blah blah
I thought I'm supposed to feed RadToolTipManager1.TargetControls.Add the control's ID. I'm guessing that this is not the Appointment ID? How do I grab this?
Sorry for two beginning ASP.NET questions today. This and the other small problem I posted about have me stuck, running in circles. Any assistance would be great.
protected void RadScheduler1_AppointmentDataBound(object sender, SchedulerEventArgs e)
{
Appointment appt = e.Appointment;
appt.ToolTip = appt.ID.ToString();
RadToolTipManager1.TargetControls.Add(appt.ID.ToString());
}
I keep getting this:
[NullReferenceException: Cannot find a server control with ID=2. If you need to specify a client-side element ID, please set IsClientID to true.]
Telerik.Web.UI.RadToolTipBase.ThrowControlNotFound(String ctrlID) +61 blah blah blah blah blah
I thought I'm supposed to feed RadToolTipManager1.TargetControls.Add the control's ID. I'm guessing that this is not the Appointment ID? How do I grab this?
Sorry for two beginning ASP.NET questions today. This and the other small problem I posted about have me stuck, running in circles. Any assistance would be great.