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

ASPxClientGantt.ResourceDeleting Event

Occurs before a user deletes a resource.

Declaration

ResourceDeleting: ASPxClientEvent<ASPxClientGanttResourceDeletingEventHandler<ASPxClientGantt>>

Event Data

The ResourceDeleting event's data class is ASPxClientGanttResourceDeletingEventArgs. 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.
key Specifies the resource key.
values Specifies the resource values.

Remarks

Use the ResourceDeleting event to process resource data before the resource is deleted.

Run Demo

<dx:ASPxGantt ID="Gantt" >
    <ClientSideEvents ResourceDeleting="onGanttResourceDeleting" ... />
</dx:ASPxGantt>
function onGanttResourceDeleting(s, e) {
    if (e.values["ResourceID"] == 1) {
        //...
        e.cancel = true;
    }
}

Concepts

See Also