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

ASPxClientGantt.DependencyInserted Event

Occurs after a user inserted a dependency.

Declaration

DependencyInserted: ASPxClientEvent<ASPxClientGanttDependencyInsertedEventHandler<ASPxClientGantt>>

Event Data

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

Property Description
key Specifies the dependency key.
values Specifies the dependency values.

Remarks

Use the DependencyInserted event to process dependency data when a dependency is inserted.

Run Demo

<dx:ASPxGantt ID="Gantt" >
    <ClientSideEvents DependencyInserted="onGanttDependencyInserted" ... />
</dx:ASPxGantt>
function onGanttDependencyInserted(s, e) {
    if (e.values["ParentID"] == 10) {
        //...
    }
}

Concepts

See Also