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.
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()
Concepts
See Also