ASPxClientCardViewBatchEditApi.SetFocusedCell(cardVisibleIndex, columnIndex) Method
Focuses the specified cell.
Declaration
SetFocusedCell(
cardVisibleIndex: number,
columnIndex: number
): void
Parameters
Name | Type | Description |
---|---|---|
cardVisibleIndex | number | The visible index of the card. |
columnIndex | number | The index of the column. |
Remarks
Use the SetFocusedCell
and GetFocusedCell methods to control the cell focus on the client side.
<dx:ASPxCardView ID="CardView" ClientInstanceName="clientCView" ...>
...
</dx:ASPxCardView>
clientCView.batchEditApi.SetFocusedCell(2,2);
See Also