Skip to main content
A newer version of this page is available. .

GanttMappingInfoBase.Key Property

Specifies an object’s unique identifier.

Namespace: DevExpress.Web.ASPxGantt

Assembly: DevExpress.Web.ASPxGantt.v20.2.dll

NuGet Package: DevExpress.Web

Declaration

[DefaultValue("ID")]
public string Key { get; set; }

Property Value

Type Default Description
String "ID"

A unique identifier.

Remarks

<dx:ASPxGantt ID="Gantt" runat="server" Width="100%" KeyFieldName="ID" ParentFieldName="ParentID" ...>
    <Mappings>
        <Task Key="ID" ParentKey="ParentID" Title="Subject" Start="StartDate" End="EndDate" Progress="PercentComplete" />
        //...
    </Mappings>
    ...
</dx:ASPxGantt>

Examples

Online Demos

See Also