Back to Devexpress

ASPxClientGantt.FocusedTaskChanging Event

aspnet-js-aspxclientgantt-4755942d.md

latest2.7 KB
Original Source

ASPxClientGantt.FocusedTaskChanging Event

Occurs before a task is focused.

Declaration

ts
FocusedTaskChanging: ASPxClientEvent<ASPxClientGanttFocusedTaskChangingEventHandler<ASPxClientGantt>>

Event Data

The FocusedTaskChanging event's data class is ASPxClientGanttFocusedTaskChangingEventArgs. 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.
keyReturns the task key.
valuesReturns the task data.

Remarks

Use the FocusedTaskChanged event to process data before a task is focused.

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

Web Forms:

aspx
<dx:ASPxGantt ID="Gantt" >
    <ClientSideEvents FocusedTaskChanging="function(s, e) {
        if (e.key == 0) {
            //...
        }
    }" />
</dx:ASPxGantt>

MVC:

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

Concepts

See Also

ASPxClientGantt.GetFocusedTaskKey

ASPxClientGantt.FocusedTaskChanged

ASPxGantt - Overview

MVCxGantt - Overview

ASPxGantt - 'How To' Examples

MVCxGantt - 'How To' Examples

ASPxClientGantt Class

ASPxClientGantt Members