ASPxClientVerticalGrid.FocusedCellChanging Event
In This Article
Occurs on the client side when the focused cell is about to be changed.
#Declaration
TypeScript
FocusedCellChanging: ASPxClientEvent<ASPxClientVerticalGridFocusedCellChangingEventHandler<ASPxClientVerticalGrid>>
#Event Data
The FocusedCellChanging event's data class is ASPxClientVerticalGridFocusedCellChangingEventArgs. 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 ASPx |
cell |
Provides information on a cell currently being focused. |
#Remarks
The FocusedCellChanging event is raised when an end-user moves focus from one cell to another. This event allows you to prevent focusing and editing a cell (including command cells) according to the specified conditions.
See Also