Skip to main content
A newer version of this page is available. .
All docs
V21.1

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

Gantt - Resources

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

Run Demo: ASPxGantt - Client-Side Events Run Demo: MVCxGantt - Client-Side Events

Web Forms:

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

MVC:

@Html.DevExpress().Gantt(settings => {
    settings.Name = "gantt";
    settings.ClientSideEvents.ResourceDeleted = "function (s, e) { 
        if (e.values["ResourceID"] == 1) {
            //...
        } 
    }";
    ...
}).Bind(
    GanttDataProvider.Tasks, GanttDataProvider.Dependencies, 
    GanttDataProvider.Resources, GanttDataProvider.ResourceAssignments
).GetHtml()

Concepts

See Also