Back to Devexpress

ASPxClientGantt.ResourceDeleting Event

aspnet-js-aspxclientgantt-6a409fd6.md

latest2.8 KB
Original Source

ASPxClientGantt.ResourceDeleting Event

Occurs before a user deletes a resource.

Declaration

ts
ResourceDeleting: ASPxClientEvent<ASPxClientGanttResourceDeletingEventHandler<ASPxClientGantt>>

Event Data

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

PropertyDescription
cancelSpecifies whether to cancel the related action (for example, row edit, export). Inherited from ASPxClientCancelEventArgs.
keySpecifies the resource key.
valuesSpecifies the resource values.

Remarks

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

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

Web Forms:

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

MVC:

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

Concepts

See Also

ASPxClientGantt.DeleteResource

ASPxGantt - Overview

MVCxGantt - Overview

ASPxGantt - 'How To' Examples

MVCxGantt - 'How To' Examples

ASPxClientGantt Class

ASPxClientGantt Members