ASPxClientGantt.DependencyDeleted Event
Occurs after a user deleted a dependency.
Declaration
DependencyDeleted: ASPxClientEvent<ASPxClientGanttDependencyDeletedEventHandler<ASPxClientGantt>>
Event Data
The DependencyDeleted event's data class is ASPxClientGanttDependencyDeletedEventArgs. The following properties provide information specific to this event:
Property | Description |
---|---|
key | Specifies the dependency key. |
values | Specifies the dependency values. |
Remarks
Use the DependencyDeleted event to process dependency data when the dependency is deleted.
<dx:ASPxGantt ID="Gantt" >
<ClientSideEvents DependencyDeleted="onGanttDependencyDeleted" ... />
</dx:ASPxGantt>
function onGanttDependencyDeleted(s, e) {
if (e.values["ParentID"] == 10) {
//...
}
}
Concepts
See Also
Feedback