ASPxClientVerticalGridBatchEditApi.GetSelectedCells Method
Gets information about the selected cells.
Declaration
GetSelectedCells(): ASPxClientVerticalGridCellInfo[]
Returns
Type | Description |
---|---|
ASPxClientVerticalGridCellInfo[] | Information about the selected cells. |
Remarks
Use the following methods to control the cell selection on the client side:
GetSelectedCells
- SelectCell(visibleIndex, rowIndex)
- SelectCellByKey(key, rowIndex)
- UnselectCell(visibleIndex, rowIndex)
- UnselectCellByKey(key, rowIndex)
<dx:ASPxVerticalGrid ID="VerticalGrid1" ClientInstanceName="clientVGrid" ...>
...
</dx:ASPxVerticalGrid>
var selCells[] = clientVGrid.batchEditApi.GetSelectedCells();
See Also