Skip to main content
All docs
V25.1
  • ASPxClientGantt.TaskUpdated Event

    Occurs after a user updated a task.

    #Declaration

    TypeScript
    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

    Gantt - Subtasks

    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()
    

    #Concepts

    See Also