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