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.
Web Forms:
<dx:ASPxGantt ID="Gantt" >
<ClientSideEvents ResourceManagerDialogShowing="function(s, e) {
if (e.values["ResourceID"] == 1) {
//...
}
}" />
</dx:ASPxGantt>
MVC:
@Html.DevExpress().Gantt(settings => {
settings.Name = "gantt";
settings.ClientSideEvents.ResourceManagerDialogShowing = "function (s, e) {
if (e.values["ResourceID"] == 1) {
//...
}
}";
...
}).Bind(
GanttDataProvider.Tasks, GanttDataProvider.Dependencies,
GanttDataProvider.Resources, GanttDataProvider.ResourceAssignments
).GetHtml()
Concepts
See Also