Back to Devexpress

ASPxClientGantt.DependencyInserting Event

aspnet-js-aspxclientgantt-ec3faed4.md

latest2.9 KB
Original Source

ASPxClientGantt.DependencyInserting Event

Occurs before a user inserts a dependency.

Declaration

ts
DependencyInserting: ASPxClientEvent<ASPxClientGanttDependencyInsertingEventHandler<ASPxClientGantt>>

Event Data

The DependencyInserting event's data class is ASPxClientGanttDependencyInsertingEventArgs. 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.
valuesSpecifies the dependency values.

Remarks

Use the DependencyInserting event to process dependency data before a dependency is inserted.

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

Example

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

Web Forms:

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

MVC:

cshtml
@Html.DevExpress().Gantt(settings => {
    settings.Name = "gantt";
    settings.ClientSideEvents.DependencyInserting = "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.DependencyInserted

ASPxClientGantt.InsertDependency

ASPxGantt - Overview

MVCxGantt - Overview

ASPxGantt - 'How To' Examples

MVCxGantt - 'How To' Examples

ASPxClientGantt Class

ASPxClientGantt Members