Skip to main content
A newer version of this page is available. .
All docs
V20.2

ASPxClientGantt.GetResourceData(key) Method

Gets the resource data.

Declaration

GetResourceData(
    key: any
): any

Parameters

Name Type Description
key any

The resource’s key.

Returns

Type Description
any

The resource’s data.

Remarks

The GetResourceData method returns data in the following format:

{ ID: “Resource_id”, Name: “Resource_name”, Color: “Resource_color” }

The key should have the same format as used in the data source field.

console.log(clientGantt.GetResourceData("resource_key"));

Concepts

See Also