Back to Devexpress

ASPxClientGantt.ResourceInserting Event

aspnet-js-aspxclientgantt-fa5aabdd.md

latest2.6 KB
Original Source

ASPxClientGantt.ResourceInserting Event

Occurs before a user inserts a new resource.

Declaration

ts
ResourceInserting: ASPxClientEvent<ASPxClientGanttResourceInsertingEventHandler<ASPxClientGantt>>

Event Data

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

PropertyDescription
cancelSpecifies whether to cancel the related action (for example, row edit, export). Inherited from ASPxClientCancelEventArgs.
valuesSpecifies the resource values.

Remarks

Use the ResourceInserting event to process resource data before the resource is inserted.

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

Web Forms:

aspx
<dx:ASPxGantt ID="Gantt" >
    <ClientSideEvents ResourceDeleting="function(s, e) {
        //...
        e.values["Name"] = "Custom resource";
    }" />
</dx:ASPxGantt>

MVC:

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

Concepts

See Also

ASPxClientGantt.InsertResource

ASPxGantt - Overview

MVCxGantt - Overview

ASPxGantt - 'How To' Examples

MVCxGantt - 'How To' Examples

ASPxClientGantt Class

ASPxClientGantt Members