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

ASPxClientGantt.ResourceAssigning Event

Occurs before a user assigns a resource to a task.

Declaration

ResourceAssigning: ASPxClientEvent<ASPxClientGanttResourceAssigningEventHandler<ASPxClientGantt>>

Event Data

The ResourceAssigning event's data class is ASPxClientGanttResourceAssigningEventArgs. 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.
values Specifies resource values.

Remarks

Use the ResourceAssigning event to process data before a resource is assigned to the task.

Run Demo

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

Concepts

See Also