Back to Devexpress

ASPxClientGantt.TaskMoving Event

aspnet-js-aspxclientgantt-8b9ea552.md

latest2.7 KB
Original Source

ASPxClientGantt.TaskMoving Event

Occurs before a user moves a task.

Declaration

ts
TaskMoving: ASPxClientEvent<ASPxClientGanttTaskMovingEventHandler<ASPxClientGantt>>

Event Data

The TaskMoving event's data class is ASPxClientGanttTaskMovingEventArgs. 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.
keySpecifies the task key.
newValuesSpecifies the task values after moving.
valuesSpecifies the task values.

Remarks

Use the TaskMoving event to process task data before the task is moved.

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

Web Forms:

aspx
<dx:ASPxGantt ID="Gantt" >
    <ClientSideEvents TaskMoving="function(s, e) {
        if (e.key == 5) {
            //...
            e.cancel = true;
        }
    }" />
</dx:ASPxGantt>

MVC:

cshtml
@Html.DevExpress().Gantt(settings => {
    settings.Name = "gantt";
    settings.ClientSideEvents.TaskMoving = "function (s, e) { 
        if (e.key == 5) {
            //...
            e.cancel = true;
        }        
    }";
    ...
}).Bind(
    GanttDataProvider.Tasks, GanttDataProvider.Dependencies, 
    GanttDataProvider.Resources, GanttDataProvider.ResourceAssignments
).GetHtml()

Concepts

See Also

ASPxGantt - Overview

MVCxGantt - Overview

ASPxGantt - 'How To' Examples

MVCxGantt - 'How To' Examples

ASPxClientGantt Class

ASPxClientGantt Members