ASPxClientGanttEndCellEditingEventArgs Class
Contains data for the EndCellEditing event.
Declaration
declare class ASPxClientGanttEndCellEditingEventArgs extends ASPxClientCancelEventArgs
Remarks
Web Forms:
<dx:ASPxGantt ID="Gantt" >
<ClientSideEvents EndCellEditing="function(s, e) {
if (e.key == 5) {
//...
e.cancel = true;
}
}" />
</dx:ASPxGantt>
MVC:
@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
Inheritance
ASPxClientEventArgs
ASPxClientCancelEventArgs
ASPxClientGanttEndCellEditingEventArgs
See Also