ASPxClientGantt.ResourceDeleted Event
Occurs after a user deleted a resource.
Declaration
ResourceDeleted: ASPxClientEvent<ASPxClientGanttResourceDeletedEventHandler<ASPxClientGantt>>
Event Data
The ResourceDeleted event's data class is ASPxClientGanttResourceDeletedEventArgs. The following properties provide information specific to this event:
Property | Description |
---|---|
key | Specifies the resource key. |
values | Specifies the resource values. |
Remarks
Use the ResourceDeleted event to process resource data when the resource is deleted.
Web Forms:
<dx:ASPxGantt ID="Gantt" >
<ClientSideEvents ResourceDeleted="function(s, e) {
if (e.values["ResourceID"] == 1) {
//...
}
}" />
</dx:ASPxGantt>
MVC:
@Html.DevExpress().Gantt(settings => {
settings.Name = "gantt";
settings.ClientSideEvents.ResourceDeleted = "function (s, e) {
if (e.values["ResourceID"] == 1) {
//...
}
}";
...
}).Bind(
GanttDataProvider.Tasks, GanttDataProvider.Dependencies,
GanttDataProvider.Resources, GanttDataProvider.ResourceAssignments
).GetHtml()
Concepts
See Also