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

[Solved] Possible to add onmouseover to appointments?

1 Answer 90 Views
Scheduler
This is a migrated thread and some comments may be shown as answers.
Rebecca Campbell
Top achievements
Rank 1
Rebecca Campbell asked on 13 Nov 2009, 06:26 PM
I'd like to implement my own version of a popup when the user mouses over an appointment on the schedule control.  I've tried adding it to the attributes collection on both the Appointment object and the AppointmentControl object, but neither of these has worked.  Is there a way to add this attribute to appointments?

1 Answer, 1 is accepted

Sort by
0
Peter
Telerik team
answered on 16 Nov 2009, 03:25 PM
Hi Rebecca,

You can attach on mouseover of the appointment like this:
function OnClientAppointmentCreated(sender, eventArgs) {
          eventArgs.get_appointment().get_element().onmouseover = function() {
             alert("onmouseover")
          };
      }



Kind regards,
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
Rebecca Campbell
Top achievements
Rank 1
Answers by
Peter
Telerik team
Share this question
or