aspnet-js-aspxclientgantt-dot-insertresource-x28-data-taskkeys-x29.md
Inserts a new resource.
InsertResource(
data: any,
taskKeys: any[]
): void
| Name | Type | Description |
|---|---|---|
| data | any |
The resource data.
| | taskKeys | any[] |
An array of tasks’ keys.
|
The keys should have the same format as used in the data source fields.
<dx:ASPxGantt ID="Gantt" runat="server" ClientInstanceName="clientGantt" >
//...
</dx:ASPxGantt>
// Inserts a new resource
clientGantt.InsertResource({ Name: "New Resource" });
// Inserts a new resource with the specified color
clientGantt.InsertResource({ Name: "New Resource", Color: "Red"});
// Inserts a new resource and assigns it to an individual task
clientGantt.InsertResource({ Name: "New Resource"}, ["4"]);
// Inserts a new resource and assigns it to multiple tasks
clientGantt.InsertResource({ Name: "New Resource"}, ["4", "10"]);
See Also