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

ASPxClientCardView.BatchEditTemplateCellFocused Event

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

Declaration

BatchEditTemplateCellFocused: ASPxClientEvent<ASPxClientCardViewBatchEditTemplateCellFocusedEventHandler<ASPxClientCardView>>

Event Data

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

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

Remarks

By default, CardView allows end-users to navigate through cell editors in Batch Edit mode using the key. However, when you create a cell template, the CardView 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 ASPxClientCardViewBatchEditTemplateCellFocusedEventArgs.handled event argument property to true to indicate that default processing is not required. The ASPxClientCardViewBatchEditTemplateCellFocusedEventArgs.column property allows you to identify the column currently being processed.

See Also