ASPxClientVerticalGridBatchEditApi.SelectCellByKey(key, rowIndex) Method
Selects a cell with the specified key.
Declaration
SelectCellByKey(
key: any,
rowIndex: number
): void
Parameters
Name | Type | Description |
---|---|---|
key | any | The record’s key. |
rowIndex | number | The index of the row. |
Remarks
Use the following methods to control the cell selection on the client side:
SelectCellByKey
- GetSelectedCells
- SelectCell(visibleIndex, rowIndex)
- UnselectCell(visibleIndex, rowIndex)
- UnselectCellByKey(key, rowIndex)
<dx:ASPxVerticalGrid ID="VerticalGrid1" ClientInstanceName="clientVGrid" ...>
...
</dx:ASPxVerticalGrid>
clientVGrid.batchEditApi.SelectCellByKey(rec_key,3);
See Also