Back to Devexpress

ASPxClientGantt.ResourceAssigned Event

aspnet-js-aspxclientgantt-302bc1e7.md

latest2.5 KB
Original Source

ASPxClientGantt.ResourceAssigned Event

Occurs after a user assigned a resource to a task.

Declaration

ts
ResourceAssigned: ASPxClientEvent<ASPxClientGanttResourceAssignedEventHandler<ASPxClientGantt>>

Event Data

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

PropertyDescription
keySpecifies the resource assignment key.
valuesSpecifies the resource values.

Remarks

Use the ResourceAssigned event to process data after a resource is assigned to the task.

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

Web Forms:

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

MVC:

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

Concepts

See Also

ASPxClientGantt.AssignResourceToTask

ASPxGantt - Overview

MVCxGantt - Overview

ASPxGantt - 'How To' Examples

MVCxGantt - 'How To' Examples

ASPxClientGantt Class

ASPxClientGantt Members