Back to Devexpress

ASPxClientGantt.EndCellEditing Event

aspnet-js-aspxclientgantt-609fc98b.md

latest2.6 KB
Original Source

ASPxClientGantt.EndCellEditing Event

Occurs before a user finishes editing a cell.

Declaration

ts
EndCellEditing: ASPxClientEvent<ASPxClientGanttEndCellEditingEventHandler<ASPxClientGantt>>

Event Data

The EndCellEditing event's data class is ASPxClientGanttEndCellEditingEventArgs. 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.
valuesSpecifies the task values.

Remarks

Use the EndCellEditing event to process task data before a user finishes editing a cell.

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

Web Forms:

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

MVC:

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

Concepts

See Also

StartCellEditing

ASPxGantt - Overview

MVCxGantt - Overview

ASPxGantt - 'How To' Examples

MVCxGantt - 'How To' Examples

ASPxClientGantt Class

ASPxClientGantt Members