Skip to main content

ASPxSchedulerOptionsToolTips.AppointmentToolTipUrl Property

Gets or sets the location of the custom tooltip form shown when the mouse hovers over an appointment.

Namespace: DevExpress.Web.ASPxScheduler

Assembly: DevExpress.Web.ASPxScheduler.v23.2.dll

NuGet Package: DevExpress.Web.Scheduler

Declaration

[DefaultValue("")]
public string AppointmentToolTipUrl { get; set; }

Property Value

Type Default Description
String String.Empty

A string, representing the URI of the custom form.

Property Paths

You can access this nested property as listed below:

Object Type Path to AppointmentToolTipUrl
ASPxScheduler
.OptionsToolTips .AppointmentToolTipUrl

Remarks

Use the AppointmentToolTipUrl property when customizing an appointment tooltip.

The default tooltip form is located at the path ~/DevExpress/ASPxSchedulerForms/AppointmentToolTip.ascx in the project. You can create your own web user control (.acx) which implements custom logic, and specify its location via the AppointmentToolTipUrl property. Then this control will appear as an appointment tooltip.

See Also