Skip to main content
A newer version of this page is available. .
All docs
V20.2

ASPxClientGantt.EndCellEditing Event

Occurs before a user finishes editing a cell.

Declaration

EndCellEditing: ASPxClientEvent<ASPxClientGanttEndCellEditingEventHandler<ASPxClientGantt>>

Event Data

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

Property Description
cancel Specifies whether to cancel the related action (for example, row edit, export). Inherited from ASPxClientCancelEventArgs.
key Specifies the task key.
values Specifies the task values.

Remarks

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

Run Demo

<dx:ASPxGantt ID="Gantt" >
    <ClientSideEvents EndCellEditing="onGanttEndCellEditing" ... />
</dx:ASPxGantt>

Concepts

See Also