aspnet-js-aspxclientgantt-36966958.md
Occurs after a user updated a task.
TaskUpdated: ASPxClientEvent<ASPxClientGanttTaskUpdatedEventHandler<ASPxClientGantt>>
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. |
Use the TaskUpdated event to process task data when a task is updated.
Run Demo: ASPxGantt - Client-Side Events Run Demo: MVCxGantt - Client-Side Events
Web Forms:
<dx:ASPxGantt ID="Gantt" >
<ClientSideEvents TaskUpdated="function(s, e) {
if (e.values["Subject"].includes("test")) {
//...
}
}" />
</dx:ASPxGantt>
MVC:
@Html.DevExpress().Gantt(settings => {
settings.Name = "gantt";
settings.ClientSideEvents.TaskUpdated = "function (s, e) {
if (e.values["Subject"].includes("test")) {
//...
}
}";
...
}).Bind(
GanttDataProvider.Tasks, GanttDataProvider.Dependencies,
GanttDataProvider.Resources, GanttDataProvider.ResourceAssignments
).GetHtml()
See Also