Skip to main content
A newer version of this page is available. .
All docs
V20.2

ASPxClientGantt.TaskDblClick Event

Occurs when a user double-clicks a task.

Declaration

TaskDblClick: ASPxClientEvent<ASPxClientGanttTaskEventHandler<ASPxClientGantt>>

Event Data

The TaskDblClick event's data class is ASPxClientGanttTaskEventArgs. The following properties provide information specific to this event:

Property Description
cancel Specifies whether to cancel the related action (for example, row edit, export). Inherited from ASPxClientCancelEventArgs.
htmlEvent Provides access to the parameters associated with the TaskClick and TaskDblClick events.
key Returns the task key.
values Returns the task data.

Remarks

Use the TaskDblClick event to process data when a user double-clicks a task.

Run Demo

<dx:ASPxGantt ID="Gantt" >
    <ClientSideEvents TaskDblClick="onGanttTaskDblClick" ... />
</dx:ASPxGantt>
function onGanttTaskDblClick(s, e) {
    if (e.key == 5) {
        //...
        e.cancel = true;
    }
}

Note

The key should have the same format as used in the data source field.

Concepts

See Also