ASPxClientGridView.BatchEditTemplateCellFocused Event
Enables you to provide navigation for editors contained in a templated cell in Batch Edit mode.
Declaration
BatchEditTemplateCellFocused: ASPxClientEvent<ASPxClientGridViewBatchEditTemplateCellFocusedEventHandler<ASPxClientGridView>>
Event Data
The BatchEditTemplateCellFocused event's data class is ASPxClientGridViewBatchEditTemplateCellFocusedEventArgs. 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, ASPxGridView 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 incorrect 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 ASPxClientGridViewBatchEditTemplateCellFocusedEventArgs.handled event argument property to true to indicate that default processing is not required. The ASPxClientGridViewBatchEditTemplateCellFocusedEventArgs.column property allow you to identify a column currently being processed.