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

ASPxClientGantt.ResourceUnassigned Event

Occurs after a user removed a resource from a task.

Declaration

ResourceUnassigned: ASPxClientEvent<ASPxClientGanttResourceUnassignedEventHandler<ASPxClientGantt>>

Event Data

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

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

Remarks

Use the ResourceUnassigned event to process data when a resource is unassigned from the task.

Run Demo

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

Concepts

See Also