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

ASPxClientGantt.ResourceInserting Event

Occurs before a user inserts a new resource.

Declaration

ResourceInserting: ASPxClientEvent<ASPxClientGanttResourceInsertingEventHandler<ASPxClientGantt>>

Event Data

The ResourceInserting event's data class is ASPxClientGanttResourceInsertingEventArgs. The following properties provide information specific to this event:

Property Description
cancel Specifies whether to cancel the related action (for example, row edit, export). Inherited from ASPxClientCancelEventArgs.
values Specifies the resource values.

Remarks

Use the ResourceInserting event to process resource data before the resource is inserted.

Run Demo

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

Concepts

See Also