aspnet-js-aspxclientgantt-540d8305.md
Occurs after a user deleted a task.
TaskDeleted: ASPxClientEvent<ASPxClientGanttTaskDeletedEventHandler<ASPxClientGantt>>
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. |
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:
<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()
See Also