Hi,
I'm using the latest version of the controls (2010.2.826.35).
I know I can set the Appointment's onmouseover attribute in client-side code (by using app.get_element().onmouseover), but I really want to do it in server-side code.
In the server-side AppointmentCreated event I've tried the following, but it does nothing:
I'm using the latest version of the controls (2010.2.826.35).
I know I can set the Appointment's onmouseover attribute in client-side code (by using app.get_element().onmouseover), but I really want to do it in server-side code.
In the server-side AppointmentCreated event I've tried the following, but it does nothing:
Dim jscript As String = "javascript:alert('hello');"
e.Appointment.Attributes.Add(
"OnMouseOver", jscript)
Also, when I view the page's source, there are no OnMouseOver attributes.
Can I set an Appointment's OnMouseOver attribute from server-side code?
Thanks,
Michael