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

ASPxClientGantt.TaskDeleted Event

Occurs after a user deleted a task.

Declaration

TaskDeleted: ASPxClientEvent<ASPxClientGanttTaskDeletedEventHandler<ASPxClientGantt>>

Event Data

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

Property Description
key Specifies the task key.
values Specifies the task values.

Remarks

Use the TaskDeleted event to process task data when the task is deleted.

Run Demo

<dx:ASPxGantt ID="Gantt" >
    <ClientSideEvents TaskDeleted="onGanttTaskDeleted" ... />
</dx:ASPxGantt>
function onGanttTaskDeleted(s, e) {
    if (e.key == 5) {
        //...
    }
}

Concepts

See Also