ASPxClientGantt.GetResourceData(key) Method
In This Article
Gets the resource data.
#Declaration
TypeScript
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.
<dx:ASPxGantt ID="Gantt" runat="server" ClientInstanceName="clientGantt" >
//...
</dx:ASPxGantt>
console.log(clientGantt.GetResourceData("resource_key"));
#Concepts
See Also