ASPxClientGantt.FocusedTaskChanged Event
Occurs when a task is focused.
Declaration
FocusedTaskChanged: ASPxClientEvent<ASPxClientGanttFocusedTaskChangedEventHandler<ASPxClientGantt>>
Event Data
The FocusedTaskChanged event's data class is ASPxClientGanttFocusedTaskChangedEventArgs. The following properties provide information specific to this event:
Property | Description |
---|---|
key | Returns the task key. |
processOnServer | Specifies whether or not to process the event on the server. Inherited from ASPxClientProcessingModeEventArgs. |
values | Returns the task data. |
Remarks
Use the FocusedTaskChanged event to process data when a task is focused. Set the processOnServer property to true to fire the server-side FocusedTaskChanged event and process task data on the server.
<dx:ASPxGantt ID="Gantt" >
<ClientSideEvents FocusedTaskChanged="onGanttFocusedTaskChanged" ... />
</dx:ASPxGantt>
function onGanttFocusedTaskChanged(s, e) {
if (e.key == 0) {
...
e.processOnServer = true;
}
}
Related APIs:
Concepts
See Also
Feedback