Skip Navigation LinksHome / Community & Support / Developer Productivity Tools Forums / ASP.NET > Toolbar > Rad ToolTip
RadControls for ASP.NET are no longer supported (see this page for reference). In case you have inquiries about the Telerik ASP.NET AJAX controls, post them in the pertinent ASP.NET AJAX forums.

Not answered Rad ToolTip

Feed from this thread
  • Sija avatar

    Posted on Jan 13, 2011 (permalink)

    Hello Sir,

                 I got some issues and found error in this code with bold line:

     protected void RadToolTipManager1_AjaxUpdate(object sender, ToolTipUpdateEventArgs e)
            {
                Appointment apt = RadScheduler1.Appointments.FindByID(e.Value);
                Control ctrl = Page.LoadControl("Controls/LessonToolTipForScheduler.ascx");
                e.UpdatePanel.ContentTemplateContainer.Controls.Add(ctrl);
                Type ucType = ctrl.GetType();
                System.Reflection.PropertyInfo propertyInfo = ucType.GetProperty("Parameters");
                propertyInfo.SetValue(ctrl, e.Value, null);
            }

    Also got error msg as:

    An exception of type 'System.Reflection.TargetInvocationException' occurred in mscorlib.dll but was not handled in user code
    Additional information: Exception has been thrown by the target of an invocation.

    Can you please help me to clear this error.


    Thanks and Regards
    Sija

Back to Top

Skip Navigation LinksHome / Community & Support / Developer Productivity Tools Forums / ASP.NET > Toolbar > Rad ToolTip