ASPxClientGridView.RowFocusing Event
Fires before a row has been focused.
Declaration
RowFocusing: ASPxClientEvent<ASPxClientGridViewRowFocusingEventHandler<ASPxClientGridView>>
Event Data
The RowFocusing event's data class is ASPxClientGridViewRowFocusingEventArgs. 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. |
htmlEvent | Provides access to the parameters associated with the ASPxClientGridView.RowFocusing event. |
visibleIndex | Gets the processed row’s visible index. Inherited from ASPxClientGridViewRowCancelEventArgs. |
Remarks
The RowFocusing event enables you to prevent row focusing. To do this, set the event parameter’s cancel property to true
.
See Also