Skip to main content
A newer version of this page is available. .

ASPxSchedulerOptionsToolTips.AppointmentDragToolTipUrl Property

Gets or sets the location of the custom tooltip form shown when an appointment is dragged.

Namespace: DevExpress.Web.ASPxScheduler

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

Declaration

[DefaultValue("")]
public string AppointmentDragToolTipUrl { 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:

Library Object Type Path to AppointmentDragToolTipUrl
ASP.NET Bootstrap Controls BootstrapScheduler
.OptionsToolTips.AppointmentDragToolTipUrl
ASP.NET Web Forms Controls ASPxScheduler
.OptionsToolTips.AppointmentDragToolTipUrl
MVCxScheduler
.OptionsToolTips.AppointmentDragToolTipUrl
SchedulerSettings
.OptionsToolTips.AppointmentDragToolTipUrl

Remarks

Use the AppointmentDragToolTipUrl property when customizing a tooltip that appears when an appointment is dragged.

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

See Also