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

ASPxClientGantt.ResourceInserted Event

Occurs after a user inserted a new resource.

Declaration

ResourceInserted: ASPxClientEvent<ASPxClientGanttResourceInsertedEventHandler<ASPxClientGantt>>

Event Data

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.

Remarks

Use the ResourceInserted event to process resource data when the resource is inserted.

Run Demo

<dx:ASPxGantt ID="Gantt" >
    <ClientSideEvents ResourceInserted="onGanttResourceInserted" ... />
</dx:ASPxGantt>
function onGanttResourceInserted(s, e) {
    //...
    e.values["Name"] = "Custom resource";
}

Concepts

See Also