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

ASPxClientGantt.ResourceDeleted Event

Occurs after a user deleted a resource.

Declaration

ResourceDeleted: ASPxClientEvent<ASPxClientGanttResourceDeletedEventHandler<ASPxClientGantt>>

Event Data

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

Property Description
key Specifies the resource key.
values Specifies the resource values.

Remarks

Use the ResourceDeleted event to process resource data when the resource is deleted.

Run Demo

<dx:ASPxGantt ID="Gantt" >
    <ClientSideEvents ResourceDeleted="onGanttResourceDeleted" ... />
</dx:ASPxGantt>
function onGanttResourceDeleted(s, e) {
    if (e.values["ResourceID"] == 1) {
        //...
    }
}

Concepts

See Also