Back to Devexpress

ASPxClientGantt.DependencyDeleting Event

aspnet-js-aspxclientgantt-ca4f9946.md

latest3.0 KB
Original Source

ASPxClientGantt.DependencyDeleting Event

Occurs before a user deletes a dependency.

Declaration

ts
DependencyDeleting: ASPxClientEvent<ASPxClientGanttDependencyDeletingEventHandler<ASPxClientGantt>>

Event Data

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

PropertyDescription
cancelSpecifies whether to cancel the related action (for example, row edit, export). Inherited from ASPxClientCancelEventArgs.
keySpecifies the dependency key.
valuesSpecifies the dependency values.

Remarks

Use the DependencyDeleting event to process dependency data before the dependency is deleted.

Run Demo: ASPxGantt - Client-Side EventsRun Demo: MVCxGantt - Client-Side Events

Example

The following example illustrates how to cancel dependency deletion if the dependency’s predecessor task key is 10:

Web Forms:

aspx
<dx:ASPxGantt ID="Gantt" >
    <ClientSideEvents DependencyDeleting="function(s, e) {
        if (e.values["ParentID"] == 10) {
            //...
            e.cancel = true;
        }
    }" />
</dx:ASPxGantt>

MVC:

cshtml
@Html.DevExpress().Gantt(settings => {
    settings.Name = "gantt";
    settings.ClientSideEvents.DependencyDeleting = "function (s, e) { 
        if (e.values["ParentID"] == 10) {
            //...
            e.cancel = true;
        }
    }";
    ...
}).Bind(
    GanttDataProvider.Tasks, GanttDataProvider.Dependencies, 
    GanttDataProvider.Resources, GanttDataProvider.ResourceAssignments
).GetHtml()

Concepts

See Also

ASPxClientGantt.DependencyDeleted

ASPxClientGantt.DeleteDependency

ASPxGantt - Overview

MVCxGantt - Overview

ASPxGantt - 'How To' Examples

MVCxGantt - 'How To' Examples

ASPxClientGantt Class

ASPxClientGantt Members