This is a migrated thread and some comments may be shown as answers.

[Solved] Remove default word "Subject" from the Tool tip

1 Answer 116 Views
Scheduler
This is a migrated thread and some comments may be shown as answers.
Samir Patel
Top achievements
Rank 1
Samir Patel asked on 02 Nov 2009, 10:44 AM
Hello,

Upon mousehouver of any appointment tool tip is displyed by default as "Subject"  , i want to remove this default tooltip, how can i do?

This means that ... When i mosue houver any appoint ment , The "Subject" as a defualt tool tip, i want to Remove / Hide this default  tool tip , how can i do? Please help me out?

REgards
Samir

1 Answer, 1 is accepted

Sort by
0
Accepted
Peter
Telerik team
answered on 04 Nov 2009, 11:26 AM
Hi Samir,

Use AppointmentDataBound or AppointmentCreated to set the ToolTip property to an empty string:

protected void RadScheduler1_AppointmentDataBound(object sender, Telerik.Web.UI.SchedulerEventArgs e)
   {
       e.Appointment.ToolTip = String.Empty;
   }


Greetings,
Peter
the Telerik team

Instantly find answers to your questions on the new Telerik Support Portal.
Watch a video on how to optimize your support resource searches and check out more tips on the blogs.
Tags
Scheduler
Asked by
Samir Patel
Top achievements
Rank 1
Answers by
Peter
Telerik team
Share this question
or