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

ASPxClientGantt.TaskUpdated Event

Occurs after a user updated a task.

Declaration

TaskUpdated: ASPxClientEvent<ASPxClientGanttTaskUpdatedEventHandler<ASPxClientGantt>>

Event Data

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

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

Remarks

Use the TaskUpdated event to process task data when a task is updated.

Run Demo

<dx:ASPxGantt ID="Gantt" >
    <ClientSideEvents TaskUpdated="onGanttTaskUpdated" ... />
</dx:ASPxGantt>
function onGanttTaskUpdated(s, e) {
    if (e.newValues["Subject"].includes("test")) {
        //...
    }
}

Concepts

See Also