ASPxClientScheduler.AppointmentToolTipShowing Event
In This Article
Fires on the client side before the appointment tooltip is shown.
#Declaration
TypeScript
AppointmentToolTipShowing: ASPxClientEvent<ASPxClientAppointmentToolTipShowingEventHandler<ASPxClientScheduler>>
#Event Data
The AppointmentToolTipShowing event's data class is ASPxClientAppointmentToolTipShowingEventArgs. The following properties provide information specific to this event:
Property | Description |
---|---|
appointment | Gets the appointment. |
cancel |
Specifies whether to cancel the related action (for example, row edit, export).
Inherited from ASPx |
#Remarks
The AppointmentToolTipShowing event enables you to prevent the tooltip display. To do this, set the event parameter’s cancel property to true
.
See Also