aspnet-js-aspxclientgantt-b5c52ced.md
Occurs after a user inserted a new resource.
ResourceInserted: ASPxClientEvent<ASPxClientGanttResourceInsertedEventHandler<ASPxClientGantt>>
The ResourceInserted event's data class is ASPxClientGanttResourceInsertedEventArgs. The following properties provide information specific to this event:
| Property | Description |
|---|---|
| key | Specified the resource key. |
| values | Specifies the resource values. |
Use the ResourceInserted event to process resource data when the resource is inserted.
Run Demo: ASPxGantt - Client-Side EventsRun Demo: MVCxGantt - Client-Side Events
Web Forms:
<dx:ASPxGantt ID="Gantt" >
<ClientSideEvents ResourceDeleting="function(s, e) {
//...
e.values["Name"] = "Custom resource";
}" />
</dx:ASPxGantt>
MVC:
@Html.DevExpress().Gantt(settings => {
settings.Name = "gantt";
settings.ClientSideEvents.ResourceDeleting = "function (s, e) {
//...
e.values["Name"] = "Custom resource";
}";
...
}).Bind(
GanttDataProvider.Tasks, GanttDataProvider.Dependencies,
GanttDataProvider.Resources, GanttDataProvider.ResourceAssignments
).GetHtml()
See Also