Skip to main content
All docs
V19.1

ASPxGanttTaskDependencyMappingInfo.PredecessorID Property

Specifies the name of the data field that contains information on the dependency’s predecessor ID.

Namespace: DevExpress.Web.ASPxGantt

Assembly: DevExpress.Web.ASPxTreeList.v19.1.dll

Declaration

[DefaultValue("DependencyType")]
public string PredecessorID { get; set; }

Property Value

Type Default Description
String "DependencyType"

A data field name.

Remarks

<dx:ASPxGantt ID="Gantt" runat="server" Width="100%" KeyFieldName="ID" ParentFieldName="ParentID" ...>
    <Mappings>
        <Task ID="ID" ParentID="ParentID" Title="Subject" Start="StartDate" End="EndDate" Progress="PercentComplete" />
        <Dependency ID="ID" PredecessorID="ParentID" SuccessorID="DependentID" DependencyType="Type" />
        <Resource ID="ID" Name="Name" />
        <ResourceAssignment ID="ID" TaskID="TaskID" ResourceID="TeamID" />
    </Mappings>
    ...
</dx:ASPxGantt>

Concept

Bind A Gantt Control to Data

Online Demo

ASPxGantt - Features

See Also