aspnet-js-aspxclientgantt-302bc1e7.md
Occurs after a user assigned a resource to a task.
ResourceAssigned: ASPxClientEvent<ASPxClientGanttResourceAssignedEventHandler<ASPxClientGantt>>
The ResourceAssigned event's data class is ASPxClientGanttResourceAssignedEventArgs. The following properties provide information specific to this event:
| Property | Description |
|---|---|
| key | Specifies the resource assignment key. |
| values | Specifies the resource values. |
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:
<dx:ASPxGantt ID="Gantt" >
<ClientSideEvents ResourceAssigned="function(s, e) {
if (e.values["ResourceID"] == 1) {
//...
}
}" />
</dx:ASPxGantt>
MVC:
@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()
See Also