Skip to main content
All docs
V23.2

ASPxClientGanttDependencyInsertedEventArgs.values Property

Specifies the dependency values.

Declaration

values: any

Property Value

Type Description
any

The dependency values.

Remarks

Web Forms:

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

MVC:

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

Concepts

See Also