ASPxClientGridViewBatchEditApi.SelectCell(rowVisibleIndex, columnIndex) Method
In This Article
Selects a cell.
#Declaration
TypeScript
SelectCell(
rowVisibleIndex: number,
columnIndex: number
): void
#Parameters
Name | Type | Description |
---|---|---|
row |
number | The visible index of the row. |
column |
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