Skip to main content
A newer version of this page is available. .
All docs
V21.1

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

Gantt - Subtasks

Run Demo: ASPxGantt - Client-Side Events Run Demo: MVCxGantt - Client-Side Events

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

Web Forms:

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

MVC:

@Html.DevExpress().Gantt(settings => {
    settings.Name = "gantt";
    settings.ClientSideEvents.TaskDeleted = "function (s, e) { 
        if (e.key == 5) {
            //...
        }        
    }";
    ...
}).Bind(
    GanttDataProvider.Tasks, GanttDataProvider.Dependencies, 
    GanttDataProvider.Resources, GanttDataProvider.ResourceAssignments
).GetHtml()

Concepts

See Also