Back to Devexpress

ASPxClientGantt.TaskDeleted Event

aspnet-js-aspxclientgantt-540d8305.md

latest2.3 KB
Original Source

ASPxClientGantt.TaskDeleted Event

Occurs after a user deleted a task.

Declaration

ts
TaskDeleted: ASPxClientEvent<ASPxClientGanttTaskDeletedEventHandler<ASPxClientGantt>>

Event Data

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

PropertyDescription
keySpecifies the task key.
valuesSpecifies the task values.

Remarks

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

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

Web Forms:

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

MVC:

cshtml
@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

DeleteTask(key)

ASPxGantt - Overview

MVCxGantt - Overview

ASPxGantt - 'How To' Examples

MVCxGantt - 'How To' Examples

ASPxClientGantt Class

ASPxClientGantt Members