Skip to main content
A newer version of this page is available. .

ASPxClientVerticalGrid.BatchEditTemplateCellFocused Event

Enables you to provide navigation for editors contained in a templated cell in Batch Edit mode.

Declaration

BatchEditTemplateCellFocused: ASPxClientEvent<ASPxClientVerticalGridBatchEditTemplateCellFocusedEventHandler<ASPxClientVerticalGrid>>

Event Data

The BatchEditTemplateCellFocused event's data class is ASPxClientVerticalGridBatchEditTemplateCellFocusedEventArgs. The following properties provide information specific to this event:

Property Description
handled Gets or sets a value specifying whether the event was handled.
row Gets the currently processed row.

Remarks

By default, ASPxVerticalGrid allows end-users to navigate through grid cell editors in batch edit mode using the TAB (for moving focus forward) and SHIFT + TAB (for moving focus backward) keys. However, when you create a cell template, the grid can incorrectly focus editors in the template. Use the BatchEditTemplateCellFocused event to provide proper navigation within a templated cell.

If you handle the BatchEditTemplateCellFocused event, set the ASPxClientVerticalGridBatchEditTemplateCellFocusedEventArgs.handled event argument property to true to indicate that default processing is not required. The ASPxClientVerticalGridBatchEditTemplateCellFocusedEventArgs.row property allows you to identify a row currently being processed.

See Also