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

How would I remove an appointment <div> "title" value?

2 Answers 31 Views
Scheduler
This is a migrated thread and some comments may be shown as answers.
Neil
Top achievements
Rank 1
Neil asked on 17 Oct 2011, 09:32 PM
My appointment has title="whatever the title is" in one of the divs generated by the telerik tool.  This causes a mouseover pop-up in firefox and chrome, and I don't want that.

How can I disable this?

2 Answers, 1 is accepted

Sort by
0
Neil
Top achievements
Rank 1
answered on 18 Oct 2011, 02:18 PM
Well, I found a way to do this in JQuery, but I'm still curious if I can do it through the telerik tool itself.

FYI - 

$('[id^="Static_radEvents_"]').attr('title', '');
0
Ivana
Telerik team
answered on 19 Oct 2011, 02:39 PM
Hello Neil,

you could subscribe to the OnAppointmentDataBound server-side event, and set the ToolTip of the appointments to empty string.
Ex:
protected void RadScheduler1_AppointmentDataBound(object sender, SchedulerEventArgs e)
{
    e.Appointment.ToolTip = "";
}


Best wishes,
Ivana
the Telerik team
If you want to get updates on new releases, tips and tricks and sneak peeks at our product labs directly from the developers working on the RadControls for ASP.NET AJAX, subscribe to their blog feed now
Tags
Scheduler
Asked by
Neil
Top achievements
Rank 1
Answers by
Neil
Top achievements
Rank 1
Ivana
Telerik team
Share this question
or