Back to Devexpress

ASPxGantt.TasksDataMember Property

aspnet-devexpress-dot-web-dot-aspxgantt-dot-aspxgantt-c0e611f3.md

latest2.2 KB
Original Source

ASPxGantt.TasksDataMember Property

Gets or sets the data source member which supplies tasks data to the gantt.

Namespace : DevExpress.Web.ASPxGantt

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

NuGet Package : DevExpress.Web

Declaration

csharp
[DefaultValue("")]
public virtual string TasksDataMember { get; set; }
vb
<DefaultValue("")>
Public Overridable Property TasksDataMember As String

Property Value

TypeDefaultDescription
StringString.Empty

The tasks data source member.

|

Remarks

The TasksDataMember property is useful when you bind tasks to the data source that contains several lists or tables.

Example

The following example illustrates how to connect the Gantt control to the specified data tables or lists in the data sources programmatically.

csharp
protected void Page_Init() {

    ASPxGantt gantt = new ASPxGantt();
    gantt.ID = "ASPxGantt1";
    form1.Controls.Add(gantt);

    gantt.TasksDataSource = "TasksDataSet";
    gantt.DependenciesDataSource = "DependenciesDataSet";
    gantt.ResourcesDataSource = "ResourcesDataSet";
    gantt.ResourceAssignmentsDataSource = "ResourceAssignmentsDataSet";

    gantt.TasksDataMember = "Tasks";
    gantt.DependenciesDataMember = "Dependencies";
    gantt.ResourcesDataMember = "Resources";
    gantt.ResourceAssignmentsDataMember = "ResourceAssignments";

    //...
    gantt.DataBind();
}

See Also

ASPxGantt - 'How To' Examples

ASPxGantt Class

ASPxGantt Members

DevExpress.Web.ASPxGantt Namespace