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