ASPxClientGridViewBatchEditApi.SelectCell(rowVisibleIndex, columnIndex) Method
Selects a cell.
Declaration
SelectCell(
rowVisibleIndex: number,
columnIndex: number
): void
Parameters
Name | Type | Description |
---|---|---|
rowVisibleIndex | number | The visible index of the row. |
columnIndex | number | The column’s index. |
Remarks
Use the following methods to control the cell selection on the client side:
SelectCell
- SelectCellByKey(key, columnIndex)
- GetSelectedCells
- UnselectCell(rowVisibleIndex, columnIndex)
- UnselectCellByKey(key, columnIndex)
<dx:ASPxGridView ID="GridView" ClientInstanceName="clientGrid" ...>
...
</dx:ASPxGridView>
clientGrid.batchEditApi.SelectCell(2,4);
See Also